解题思路:暴力
注意事项:
参考代码:
#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语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:735 |
C语言训练-斐波纳契数列 (C语言代码)浏览:1267 |
【数组的距离】 (C语言代码)浏览:785 |
用筛法求之N内的素数。 (C语言代码)浏览:685 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:466 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:580 |
1012题解浏览:938 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:581 |
罗列完美数 (C语言代码)浏览:517 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:487 |