Card Game for Three

题目链接:http://exam.upc.edu.cn/problem.php?cid=1372&pid=11

题意:ABC三人打牌,他们只能出第一张牌,牌的内容说明下一回合是谁出牌。最后的人赢。

这个就是模拟,利用queue来模拟

#include
using namespace std;
char s[4][1000];
int main()
{
    for(int i=0;i<3;i++){
        scanf("%s",s[i]);
    }
    queueq[3];
    for(int i=0;i<3;i++){
        for(int j=0;j

你可能感兴趣的:(题库,中石油)