复利
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复利相关的知识,希望对你有一定的参考价值。
Calculating Compound Interest. Real time [Compound Interest Calculator](http://ncalculators.com/interest/compound-interest-calculator.htm "Real time result")
function(year,amount,interest,frequency){ var compound_int=0; var interest1=parseFloat(interest/(frequency*100)); var val=parseInt(amount)*Math.pow((1+interest1),(frequency*year)); return val; }
以上是关于复利的主要内容,如果未能解决你的问题,请参考以下文章