计算利息,for使用范例
Posted HGR
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算利息,for使用范例相关的知识,希望对你有一定的参考价值。
/*利息计算程序,for使用范例*/
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main(void)
{
double amount;/*存款总额*/
double principal=1000.0;/*初始本金*/
double rate=0.05;/*年利率*/
int year;/*储蓄年份*/
printf("\nWelcome.\n"
"Calculate the compound interest\n\n");
for(year=1;year<=10;year++)
{
amount=principal*pow(1.0+rate,year);
printf("%4d%21.2f\n",year,amount);
}/*end for*/
system("PAUSE");
return 0;
} /*end main*/
以上是关于计算利息,for使用范例的主要内容,如果未能解决你的问题,请参考以下文章
[范例] Firemonkey Edit 输入框只允许输入数字 for Android