用c语言写一个函数,根据用户输入的每月存款数、年利率和月份数,计算给定月份后账户上的钱数并输出。
时间: 2023-06-05 19:09:02 浏览: 113
好的,这是一个有关编程的问题,我可以回答。请稍等,我为您查询相关信息。
以下是一个用C语言编写的函数,根据用户输入的每月存款数、年利率和月份数,计算给定月份后账户上的钱数并输出。
```c
#include <stdio.h>
#include <math.h>
double calculate_savings(double deposit, double interest_rate, int months) {
double total = deposit;
for (int i = 1; i <= months; i++) {
double interest = total * (interest_rate / 12.0);
total += deposit + interest;
}
return total;
}
int main() {
double deposit, interest_rate;
int months;
printf("请输入每月存款数:");
scanf("%lf", &deposit);
printf("请输入年利率:");
scanf("%lf", &interest_rate);
printf("请输入存款月数:");
scanf("%d", &months);
double total = calculate_savings(deposit, interest_rate, months);
printf("存款%dm月后的总额为:%.2lf元\n", months, total);
return 0;
}
```
注意,在使用此代码时,输入的年利率应该为实际年利率除以100。例如,如果年利率为3.5%,则应输入0.035。输出的结果保留两位小数。
阅读全文