前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDUOJ------2398Savings Account

HDUOJ------2398Savings Account

作者头像
Gxjun
发布2018-03-22 13:08:35
6530
发布2018-03-22 13:08:35
举报
文章被收录于专栏:ml

Savings Account

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 779    Accepted Submission(s): 545

Problem Description

Suppose you open a savings account with a certain initial balance. You will not make any withdrawals or further deposits for a number of years. The bank will compound your balance (add the annual interest) once a year, on the anniversary of the opening of the account. Your goal is to achieve a certain target amount in your savings account. In how may years will the target amount be achieved?

Input

The input file will contain data for one or more test cases, one test case per line. Each line will contain three numbers: the initial balance, the annual interest rate (as a percentage of the balance), and the target amount, separated by blank spaces. These will be positive numbers; they may or may not contain a decimal point. The target amount will be greater than the initial balance. The input is terminated by end-of-file

Output

For each line of input, your program will produce exactly one line of output: This line will contain one positive integer value: the number of years required to achieve the target amount.

Sample Input

200.00 6.5 300 500 4 1000.00

Sample Output

7 18

Author

2006Rocky Mountain Warmup

Source

HDU “Valentines Day” Open Programming Contest 2009-02-14

水体:

代码:

代码语言:javascript
复制
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 int main()
 5 {
 6     double a,r,tot;
 7      int cnt=0;
 8   while(scanf("%lf%lf%lf",&a,&r,&tot)!=EOF)
 9    {
10          r/=100;
11         while(tot-a>1.0e-8)
12         {
13             cnt++;
14             a*=(r+1);
15         }
16         printf("%d\n",cnt);
17         cnt=0;
18     }
19     return 0;
20 }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2014-04-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Savings Account
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档