题目链接:ZOJ 3610 Yet Another Story of Rock-paper-scissors
怎么都是女的赢,我还错了一次,我以为女的都叫Hideyoshi。。。
#include <iostream>
using namespace std;
string s1, s2, s3;
int T;
int main()
{
cin >> T;
while(T--)
{
cin >> s1 >> s2 >> s3;
cout << s2 <<" will survive" << endl;
}
return 0;
}