美文网首页
2018-01-06计算贷款本息的代码公式

2018-01-06计算贷款本息的代码公式

作者: Dollarbo | 来源:发表于2018-01-06 18:11 被阅读0次

    //(贷款金额 *月利率) / 期数、保留两位小数

    /**

    计算增值费

    @param loanMoney 贷款本金

    @param loanMonthRate 月利率

    @param periods 期数

    @return 结果

    */

    - (NSString *)numBerView:(NSString*)loanMoney withloanMonthRate:(NSString*)loanMonthRate withNumBerPeriods:(NSString*)periods{

        return [NSString stringWithFormat:@"%f",([loanMoney doubleValue] * [loanMonthRate doubleValue])/[periods integerValue]];

    }

    //等额本息计算公式:〔贷款本金×月利率×(1+月利率)×  还款月数〕÷〔(1+月利率)× 还款月数-1〕

    /**

    等额本息

    @param loanMoney 贷款本金

    @param MonthRate 月利率

    @param periods 期数

    @return 结果

    */

    - (NSString *)numBerView:(NSString*)loanMoney withNumBerFeeRate:(NSString*)MonthRate withNumBerPeriods:(NSString*)periods{

        return [NSString stringWithFormat:@"%f",([loanMoney doubleValue] * [MonthRate doubleValue] * pow(1+[MonthRate doubleValue], [periods doubleValue])) / (pow(1+[MonthRate doubleValue], [periods doubleValue]) - 1)];

    }

    相关文章

      网友评论

          本文标题:2018-01-06计算贷款本息的代码公式

          本文链接:https://www.haomeiwen.com/subject/fooynxtx.html