ZOJ 3322 Who is Older?

题目链接:?problemCode=3322

题面:

Who is Older?Time Limit:1 Second Memory Limit:32768 KB

Javaman and cpcs are arguing who is older. Write a program to help them.

Input

There are multiple test cases. The first line of input is an integerT(0 <T<= 1000) indicating the number of test cases. ThenTtest cases follow. Thei-th line of the nextTlines contains two dates, the birthday of javaman and the birthday of cpcs. The format of the date is "yyyy mm dd". You may assume the birthdays are both valid.

Output

For each test case, output who is older in a single line. If they have the same birthday, output "same" (without quotes) instead.

Sample Input

31983 06 06 1984 05 021983 05 07 1980 02 291991 01 01 1991 01 01

Sample Output

javamancpcssame

题意:

比谁老。还是比较欣赏自己率性的写法的。

代码:

#include <iostream>using namespace std;int main(){int t,y1,y2,m1,m2,d1,d2,x,xx;cin>>t;while(t–){cin>>y1>>m1>>d1>>y2>>m2>>d2;x=y1*10000+m1*100+d1;xx=y2*10000+m2*100+d2;if(x<xx)cout<<"javaman\n";else if(x>xx)cout<<"cpcs\n";else cout<<"same\n";}return 0;}

,孝敬父母、疼爱孩子、体贴爱人、善待朋友。

ZOJ 3322 Who is Older?

相关文章:

你感兴趣的文章:

标签云: