【刽子手游戏】规则如下:
计算机想一个单词让你猜,你每次可以猜一个字母,如果单词里有这个字母,所有该字母都会显示出来;
如果没有那个字母,计算机将会在一幅“刽子手”画上面画上一笔,这幅画只需要7笔就能完成,
所以你最多只能猜错6次,不然就输定了!
注意:猜一个已经猜过的字母也算猜错。
这个题是要求我们写一个裁判程序。多组输入,每组输入有三行,第一行是1个数,第二行是计算机给出的单词,第三行是玩家的猜测。
代码如下:
/*对于机器产生的字符串,记录下每种类型的字符(x[i] = 1), 然后对猜测的字符进行判断如果输入的是回车符代表放弃, 如果不是回车符,第一次猜中了则将x[i] = 0,并将flags++,如果flags == number 代表赢了,如果没有猜中错误的次数加一并判断是否达到7,达到的话退出循环*/ #include<iostream> #include<cstring> #include<algorithm> using namespace std; int main() { int round; char a[20], b[20]; while(cin >> round >> a && round != -1) { int x[26], flags = 0, number = 0; memset(x, 0, sizeof(x)); cin.get(); for(int i = 0; i < strlen(a); i++) { if(x[a[i] - 'a'] == 0) { x[a[i] - 'a'] ++; number ++; } } int n = 0; char c; while(true) { cin.get(c); if(c == '\n') { cout << "Round " << round << endl; cout << "You chickened out." << endl; break; } else { if(x[c - 'a'] == 1) { x[c - 'a'] --; flags ++; if(flags == number) { cout << "Round " << round << endl; cout << "You win." << endl; break; } } else { n ++; if(n == 7) { cout << "Round " << round << endl; cout << "You lose" << endl; break; } } } } fflush(stdin); } }
注:cin单个字符时不会读取空格和回车;cin.get()才会