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

2018-01-06  本文已影响0人  Dollarbo

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

/**

计算增值费

@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)];

}

上一篇下一篇

猜你喜欢

热点阅读