编写程序存入存款本金年利率和年数计算复利结果保留两位小数
时间: 2023-04-06 10:01:31 浏览: 298
C#——编写程序输入年利率k(例如2.52%),存款总额total(例如100000元),计算一年后的本息并输出。.doc
5星 · 资源好评率100%
您好,可以使用以下的 C 语言代码来计算复利结果并保留两位小数:
#include <stdio.h>
#include <math.h>
int main() {
double principal, rate, years, compound_interest;
printf("请输入存款本金:");
scanf("%lf", &principal);
printf("请输入年利率:");
scanf("%lf", &rate);
printf("请输入存款年数:");
scanf("%lf", &years);
compound_interest = principal * pow(1 + rate, years);
printf("复利结果为:%.2lf\n", compound_interest);
return 0;
}
希望能够帮到您。
阅读全文