markdown 在线制作ppt json校验和格式化工具

POJ 2390

import java.util.*;
public class Main {
    public static void main(String args[]){
    double interest;
    Scanner cin=new Scanner(System.in);
    interest=cin.nextInt();
    interest/=100;
    interest+=1;
    double money;
    money=cin.nextInt();
    double year=0;
    year=cin.nextInt();
    while(year>0){
        money*=interest;
        year--;
    }
    System.out.println((int)money);
    }
}

 

posted @ 2015-06-11 10:57  GavinHacker  阅读(102)  评论(0编辑  收藏  举报
markdown 在线制作ppt json校验和格式化工具