欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

NUC1373 Bank Interest【水题】

发布时间:2025/3/20 编程问答 45 豆豆
生活随笔 收集整理的这篇文章主要介绍了 NUC1373 Bank Interest【水题】 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

Bank Interest

时间限制: 1000ms 内存限制: 65535KB

通过次数: 1总提交次数: 1

问题描述 Farmer John made a profit last year! He would like to invest it well but wonders how much money he will make. He knows the interest rate R (an integer between 0 and 20) that is compounded annually at his bank. He has an integer amount of money M in the range 100..1,000,000. He knows how many years Y (range: 0..400) he intends to invest the money in the bank. Help him learn how much money he will have in the future by compounding the interest for each year he saves. Print an integer answer without rounding. Answers for the test data are guaranteed to fit into a signed 32 bit integer. 输入描述 * Line 1: Three space-separated integers: R, M, and Y 输出描述 * Line 1: A single integer that is the number of dollars FJ will have after Y years. 样例输入 5 5000 4 样例输出 6077 来源 USACO 2004 November Gold 提示 INPUT DETAILS:

5% annual interest, 5000 money, 4 years

OUTPUT DETAILS:

Year 1: 1.05 * 5000 = 5250
Year 2: 1.05 * 5250 = 5512.5
Year 3: 1.05 * 5512.50 = 5788.125
Year 4: 1.05 * 5788.125 = 6077.53125
The integer part of 6077.53125 is 6077.


问题分析:(略)

这个问题和《POJ2390 Bank Interest【水题】》是同一个问题,代码直接用就AC了。

程序说明:参见参考链接。

参考链接:POJ2390 Bank Interest【水题】

题记:程序做多了,不定哪天遇见似曾相识的。

AC的C++程序如下:

/* POJ2390 Bank Interest */#include <iostream> #include <cmath>using namespace std;int main() {int r, m, y;cin >> r >> m >> y;cout << (int)(m * pow(1 + r / 100.0, y)) << endl;return 0; }



转载于:https://www.cnblogs.com/tigerisland/p/7563669.html

总结

以上是生活随笔为你收集整理的NUC1373 Bank Interest【水题】的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。