1436: 计算存款本利之和
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:11178
Solved:4428
Description
设银行定期存款的年利率rate为2.25%,已知存款期为n年,存款本金为capital元,试编程计算并输出n年后的本利之和deposit。
提示:从键盘输入数据可以使用函数scanf()。本例中为scanf("%lf,%d,%lf", &rate, &n, &capital);
Input
以下为程序的一个运行示例:
Please enter rate, year, capital:
0.0225,10,1000↙
deposit=1249.203
输入格式: "%lf,%d,%lf"
Output
输入信息提示: "Please enter rate, year, capital:\n"
输出格式:"deposit=%.3f\n"
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
Sample Input Copy
0.0225,10,1000
Sample Output Copy
Please enter rate, year, capital:
deposit=1249.203