您的位置:首页 > 其它

zoj 3610 Yet Another Story of Rock-paper-scissors

2012-04-15 09:53 513 查看
#include "iostream"
#include "string"
using namespace std;

int main()
{
int testcase;
string str1, str2, str3;
cin >> testcase;
while (testcase--)
{
cin >> str1 >> str2 >> str3;
cout << str2 << " will survive" << endl;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: