ローンの償却を数えたいのですが、返済日の計算方法がわかりません。
私は、、、を持っLoan amount
てInterest rate
いMonthly paymnet
ますLoan Start date
。これらの 4 つの値から、iOS でのローン返済日を知りたいです。
Interest
のMonthly Amount
ように数えます
double loanAmount = [self.amount doubleValue];
double intRate = [self.rate doubleValue];
double years = [self.durationCount doubleValue];
double r = intRate / 1200;
double n;
if ([self.duration isEqualToString:@"Yearly"])
{
n = years * 12;
}
else
{
n = years;
}
double rPower = pow(1 + r, n);
_monthlyPayment = loanAmount * r * rPower / (rPower - 1);
double annualPayment = _monthlyPayment * 12;
if ([self.duration isEqualToString:@"Yearly"])
{
_totalAmount = annualPayment * years;
}
else
{
_totalAmount = annualPayment;
}
self.InterestPaid=_totalAmount-loanAmount;
誰でも私を助けることができますか?