首页 > 代码库 > poj 2683 Ohgas' Fortune 利率计算
poj 2683 Ohgas' Fortune 利率计算
水题。
代码:
//poj 2683 //sep9 #include <iostream> using namespace std; int main() { int cases; scanf("%d",&cases); while(cases--){ int fund,year,op,ans=-1; scanf("%d%d%d",&fund,&year,&op); while(op--){ int A,B,flag,charge; double rate; scanf("%d%lf%d",&flag,&rate,&charge); A=fund; if(flag==1){ for(int i=0;i<year;++i){ B=(int)A*rate; A=A+B-charge; } }else{ int cumulative=0; for(int i=0;i<year;++i){ B=(int)A*rate; A-=charge; cumulative+=B; } A+=cumulative; } ans=max(ans,A); } printf("%d\n",ans); } return 0; }
poj 2683 Ohgas' Fortune 利率计算
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。