poj 2683 Ohgas' Fortune 利率计算

2015-11-21 00:58:30 · 作者: · 浏览: 5

水题。

代码:

?

//poj 2683
//sep9
#include 
  
   
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
   
    

?

?