博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2390 Bank Interest【水题】
阅读量:6619 次
发布时间:2019-06-25

本文共 1535 字,大约阅读时间需要 5 分钟。

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 15929   Accepted: 9556

Description

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.

Input

* Line 1: Three space-separated integers: R, M, and Y

Output

* Line 1: A single integer that is the number of dollars FJ will have after Y years.

Sample Input

5 5000 4

Sample Output

6077

Hint

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.

Source

问题链接:

问题简述:输入三个正整数R、M和Y,它们表示利率、存款余额和年数,计算Y年后存款余额变为多少。要求输出结果为整数。

问题分析:这是一个单纯的计算问题。

程序说明:C语言库math.h中,有指数函数pow可以用于计算xy,使用该函数就可以简单地计算出结果。

AC的程序如下:

/* POJ2390 Bank Interest */#include 
#include
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/7564131.html

你可能感兴趣的文章
JDBC的轻量级封装DBUtils开源组件的使用(一)
查看>>
find 文件中字符串搜索
查看>>
环境考查与探测-虚拟终端网络工程实施
查看>>
撮合系统
查看>>
Android Studio 快捷键
查看>>
在web.xml文件中使用EL表达式配置变量例子
查看>>
python小程序
查看>>
专业才是王道
查看>>
Struts2.3.1.2+Hibernate3.5.5+Spring3.1.1所必要的Jar包
查看>>
交换机的“TRUNK”的配置
查看>>
Nginx禁止ip访问站点
查看>>
100万个数中找出最大的前K个数
查看>>
arrayList 和hashSet的区别
查看>>
shell脚本自动修改IP信息
查看>>
【Python进阶】03、json
查看>>
Bitnami-Redmine迁移升级后若干问题解决方案
查看>>
php.ini详细参数讲解
查看>>
Linux内核学习之三内核编程语言与环境
查看>>
初识 XSS 1
查看>>
[C#进阶系列]专题一:深入解析深拷贝和浅拷贝
查看>>