Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6075 沈文佳 划拳 C++ 通过 100 0 MS 256 KB 360 2020-08-23 19:25:06

Tests(1/1):


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


测评信息: