Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54976 | zhangweiran | 石头剪子布 | C++ | 通过 | 0 MS | 244 KB | 670 | 2024-11-01 15:51:42 |
#include<iostream> #include<string> using namespace std; int main(){ int n=0; cin>>n; string s1[n]; string s2[n]; string game[3]={"Rock", "Scissors", "Paper"}; for(int i=0;i<n;i++){ cin>>s1[i]>>s2[i];//输入 } //判断 for(int i=0;i<n;i++){ //平局 if(s1[i]==s2[i]){ cout<<"Tie"<<endl; } //1 if((s1[i]==game[0]&&s2[i]==game[1]) || (s1[i]==game[1]&&s2[i]==game[2]) || (s1[i]==game[2]&&s2[i]==game[0])){ cout<<"Player1"<<endl; } //2 if((s1[i]==game[0]&&s2[i]==game[2]) || (s1[i]==game[1]&&s2[i]==game[0]) || (s1[i]==game[2]&&s2[i]==game[1])){ cout<<"Player2"<<endl; } } return 0; }