所以我不是最好的数学或编程,我试图弄清楚如何用javascript写这个。任何帮助都会非常感激。
M = P[i(1+i)^n]/[(1+i)^n -1]
M = Monthly Payments
P = Principle Amount
I = Interest Rate
N = Number of payments
未来谢谢!
答案 0 :(得分:2)
这是你正在寻找的吗?
var P = 5;
var i = 10;
var n = 15;
var M = (P*Math.pow(i*(1 + i), n)) / (Math.pow(1 + i, n) - 1);
console.log(M)
答案 1 :(得分:2)
应该是这样:
P*(i*Math.pow(1+i, n))/(Math.pow(1+i, n)-1)
Math.pow(x,y)给你x的幂y,你必须使用简单的括号"()"而对于多笔记录,请始终使用" *"。