ZOJ 3322 Who is Older?

来源:互联网 发布:淘宝内部优惠券推广员 编辑:程序博客网 时间:2024/06/05 04:12

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?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 integer T (0 < T <= 1000) indicating the number of test cases. Then T test cases follow. The i-th line of the next T lines 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;} 


0 0