C-study/02-1/3/README.md
2021-09-29 15:15:39 +08:00

30 lines
768 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

【问题描述】输入存款金额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次方
# 运行结果
成功通过编译, 且无编译警告
共有测试数据:1
平均占用内存:2.031K
平均CPU时间:0.00509S
平均墙钟时间:0.00509S
测试数据 评判结果
测试数据1 完全正确