Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6073 沈文佳 划拳 C++ 解答错误 0 0 MS 248 KB 361 2020-08-23 19:24:29

Tests(0/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; }


测评信息: