编写一个C语言程序,求n年后的本息只和
时间: 2023-05-14 18:05:27 浏览: 140
第3章最简单的C程序设计PPT课件.ppt
非常感谢您的提问!以下是一个求n年后本息和的C语言程序:
```c
#include <stdio.h>
#include <math.h>
int main() {
double principal, rate, interest;
int years;
printf("请输入本金:");
scanf("%lf", &principal);
printf("请输入年利率:");
scanf("%lf", &rate);
printf("请输入存款年限:");
scanf("%d", &years);
interest = principal * pow(1 + rate, years);
printf("%d 年后的本息和为:%.2lf\n", years, interest);
return 0;
}
```
请注意,这个程序假设利率是固定的,实际上利率可能会随着时间变化而变化。此外,这个程序也没有考虑通货膨胀等因素对本息和的影响。
阅读全文