zoukankan      html  css  js  c++  java
  • Bank Interest

    Bank Interest

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Java/Other)
    Total Submission(s) : 45   Accepted Submission(s) : 18
    Problem 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
     
    Source
    PKU
     
     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 
     4 int main()
     5 {
     6     double SUM,r,R,M,Y,i;
     7     while(scanf("%lf%lf%lf",&R,&M,&Y)!=EOF)
     8     {
     9         SUM=M;
    10         for(i=0,r=0;i<Y;i++)
    11         {
    12             r=SUM*(0.01*R);
    13             SUM=SUM+r;
    14         }
    15         printf("%ld
    ",(long)SUM);
    16     }
    17     return 0;
    18 }
    View Code
    转载请备注:
    **************************************
    * 作者: Wurq
    * 博客: https://www.cnblogs.com/Wurq/
    * Gitee: https://gitee.com/wurq
    **************************************
  • 相关阅读:
    Qt Creator pro 文件 导入vs2013碰到的问题
    扫描助手技术支持
    测试下载
    pod安装(可安装任意版本)和卸载 (转载做记录自留备用)
    阿拉德下载
    Mac 上传项目到码云
    iOS中Realm数据库的基本用法
    集成微信支付流程整理
    tableViewCell左划显示多个按钮(系统原生)
    快速排序法从小到大排序
  • 原文地址:https://www.cnblogs.com/Wurq/p/3750273.html
Copyright © 2011-2022 走看看