#include<bits/stdc++.h>
using namespace std;
int main()
{
char a[101],b[101];
int i,n;
cin>>n;
for(i=0;i<n;i++)
{
cin>>a>>b;
if(a[0]=='R'&&b[0]=='S'||a[0]=='S'&&b[0]=='P'||a[0]=='P'&&b[0]=='R')
cout<<"Player1"<<endl;
else if(a[0]==b[0])
cout<<"Tie"<<endl;
else
cout<<"Player2"<<endl;
}
return 0;
}
本题解析:本题看似比较复杂,实际上还是比较简单的,就是字符比较。因为已经限定了范围,无论是剪刀,石头,还是布,都已经限定了。所以直接比较第一个字符就可以了。
本题知识点有:字符数组的含义,字符的比较,字符数组的索引,条件判断。
各位同学加油。