提交时间:2020-08-14 17:26:10

运行 ID: 5699

#include<bits/stdc++.h> using namespace std; int main(){ int n,a,b; cin>>n; for(int i=1;i<=n;i++){ cin>>a>>b; if((a+b)<=6){ if(a>b) cout<<"XDZ"; if(a==b) cout<<"DOGFALL"; if(b>a) cout<<"YY"; } if((a+b)>6){ if(a<b) cout<<"XDZ"; if(a==b) cout<<"DOGFALL"; if(b<a) cout<<"YY"; } } return 0; }