请编写程序,输入本金投,资期限和利率,按照一次支付复利计算,投资收益额和收益率
时间: 2023-03-26 18:02:31 浏览: 130
一个资产复利计算程序
很高兴回答您的问题。以下是计算投资收益额和收益率的程序:
#include <stdio.h>
#include <math.h>
int main()
{
double principal, rate, interest, total;
int term;
printf("请输入本金投资额:");
scanf("%lf", &principal);
printf("请输入资期限(年):");
scanf("%d", &term);
printf("请输入利率(百分比):");
scanf("%lf", &rate);
rate /= 100; // 将利率转换为小数
total = principal * pow(1 + rate, term); // 计算本息合计
interest = total - principal; // 计算利息
printf("投资收益额为:%.2lf元\n", interest);
printf("投资收益率为:%.2lf%%\n", interest / principal * 100);
return ;
}
希望能够帮助您计算投资收益额和收益率。
阅读全文