C语言计算存款的本金合计
时间: 2023-08-30 22:09:05 浏览: 115
HANGJA_C语言桁架计算程序_
5星 · 资源好评率100%
以下是一个计算存款本金合计的C语言程序:
```c
#include <stdio.h>
int main() {
float principal, interest;
int years;
printf("Enter the principal amount: ");
scanf("%f", &principal);
printf("Enter the interest rate: ");
scanf("%f", &interest);
printf("Enter the number of years: ");
scanf("%d", &years);
float total = principal;
for (int i = 1; i <= years; i++) {
total *= (1 + interest);
}
printf("The total amount of principal after %d years is %.2f\n", years, total);
return 0;
}
```
该程序要求用户输入本金金额、利率和存款年数,然后使用一个for循环计算本金合计。在每一年结束时,本金乘以1加上利率的倍数,然后将结果存储在变量total中。最后,程序输出本金合计的总金额。
注意,此程序假定利率为固定值,而实际上利率可能会随时间变化。此外,此程序还没有考虑到复利的影响。
阅读全文