概述
【问题描述】
输入存款金额money、存期year和年利率rate,根据下列公式计算存款到期时的利息interest(税前),输出时保留2位小数。
interest=money(1+rate)year-money
【样例输入输出】
Enter money,year and rate: 1000 3 0.025
interest=76.89
【样例说明】下划线表示用户输入的数据
【评分标准】
【编程提醒】使用数学函数需要
(1)程序开始处加入一行:#include <math.h>
(2)语句 z = pow(x,y); 计算x的y次方,并赋值给z
#include <stdio.h>
#include <math.h>
int main()
{
double money,year,rate,interest;
printf ("Enter money,year and rate:");
scanf("%lf %lf %lf",&money,&year,&rate);
interest=money*pow(1+rate,year)-money;
printf ("interest=%0.2lfn",interest);
return 0;
}
最后
以上就是清秀煎蛋为你收集整理的《编程求存款到期利息》的全部内容,希望文章能够帮你解决《编程求存款到期利息》所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复