Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
求助,1006,明明数据都测试过了,就是过不去#include<iostream> using namespace std; int main(){ int p , e , i , d; bool tre = 0; int count = 0; while((cin >> p >> e >> i >> d)&&!(p==-1 && e==-1 && i==-1 && d==-1) ){ tre = 0; ++count; for( ; i <= 21252 ; ){ for( ; e <= i ; ){ for( ; p <= e ; ){ if(p == e && e == i && p > d){ tre = 1; cout <<"Case " << count <<": the next triple peak occurs in " << p - d <<" days." << endl; break; } p += 23; } if(tre == 1) break; e += 28; } if(tre == 1) break; i += 33; } } return 0; } Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator