Judge1


私信TA

用户名:dotcpp0609748

访问量:524

签 名:

等  级
排  名 34883
经  验 433
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 Dalian Maritime Univ
专  业

  自我简介:

TA的其他文章

解题思路:暴力

注意事项:

参考代码:

#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 人评分

  评论区

  • «
  • »