解题思路:暴力
注意事项:
参考代码:
#include<iostream>
#include<string>
using namespace std;
int main()
{
int N;
cin>>N;
string str1;
string str2;
for(int i=0;i<N;i++){
//TODO
cin>>str1;
cin>>str2;
if(str1[0] == 'R')
{
if(str2[0] == 'R')
cout<<"Tie"<<endl;
else if(str2[0] == 'P')
cout<<"Player2"<<endl;
else
cout<<"Player1"<<endl;
}
if(str1[0] == 'S')
{
if(str2[0] == 'S')
cout<<"Tie"<<endl;
else if(str2[0] == 'R')
cout<<"Player2"<<endl;
else
cout<<"Player1"<<endl;
}
if(str1[0] == 'P')
{
if(str2[0] == 'P')
cout<<"Tie"<<endl;
else if(str2[0] == 'S')
cout<<"Player2"<<endl;
else
cout<<"Player1"<<endl;
}
}
}
0.0分
0 人评分
十->二进制转换 (C语言代码)浏览:1330 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:642 |
母牛的故事 (C语言代码)浏览:1045 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
大神老白 (C语言代码)浏览:637 |
时间转换 (C语言代码)浏览:698 |
字符串比较 (C语言代码)浏览:770 |
第三届阿里中间件性能挑战赛-总决赛亚军比赛攻略浏览:1170 |
C二级辅导-等差数列 (C语言代码)浏览:891 |
小O的乘积 (C++代码)浏览:545 |