复利

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复利相关的知识,希望对你有一定的参考价值。

Calculating Compound Interest. Real time [Compound Interest Calculator](http://ncalculators.com/interest/compound-interest-calculator.htm "Real time result")
  1. function(year,amount,interest,frequency){
  2.  
  3. var compound_int=0;
  4.  
  5. var interest1=parseFloat(interest/(frequency*100));
  6.  
  7. var val=parseInt(amount)*Math.pow((1+interest1),(frequency*year));
  8.  
  9. return val;
  10.  
  11. }

以上是关于复利的主要内容,如果未能解决你的问题,请参考以下文章

0312复利计算程序

复利计算3.0代码

0320-复利计算器代码

java复利计算基本代码

0317复利计算总结

复利计算实验总结