题解
2024-12-17 19:43:52
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a==b){
cout<<"Draw";
}else if(a==1&&b==2){
cout<<"Win";
}else if(a==2&&b==3){
cout<<"Win";
}else if(a==3&&b==1){
cout<<"Win";
}else{
cout<<"Fail";
}
return 0;
}
这里空空如也
有帮助,赞一个