问题链接:UVA489 Hangman Judge。
问题简述:参见原题链接。
问题分析:这是一个模拟题。
程序中,定义了若干宏定义,使得程序可阅读性增强。函数guess()中的逻辑做了适当的改进,更加合理快速。
AC的C语言程序如下:
/* UVA489 Hangman Judge */
#include
#include
#define TRUE 1
#de...
分类:
其他好文 时间:
2016-08-11 21:05:31
阅读次数:
146
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=94&page=show_problem&problem=430 题目:猜单词游戏,规则如下: 1. 竞猜者每次猜一个字母; 2. 每次竞猜正 ...
分类:
其他好文 时间:
2016-08-04 01:19:25
阅读次数:
231
Description In ``Hangman Judge,'' you are to write a program that judges a series of Hangman games. For each game, the answer to the puzzle is given a
分类:
其他好文 时间:
2016-03-19 17:46:00
阅读次数:
255
Hangman Judge In ``Hangman Judge,'' you are to write a program that judges a series of Hangman games. For each game, the answer to the puzzle is given
分类:
其他好文 时间:
2016-02-26 20:38:44
阅读次数:
252
单词部分借用了过去写的,重新写了一个命令行下的Hangman。https://github.com/shalliestera/hangman// 猜单词游戏#ifndef HANGMAN_H_#define HANGMAN_H_#include class Hangman {private: ...
分类:
其他好文 时间:
2015-12-14 14:25:03
阅读次数:
181
题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=430 1 #include 2 #include 3 #include 4 #includ...
分类:
其他好文 时间:
2015-09-29 18:38:27
阅读次数:
199
In ``Hangman Judge,'' you are to write a program that judges a series of Hangman games. For each game, the answer to the puzzle is given as well as th...
分类:
其他好文 时间:
2015-09-28 19:01:40
阅读次数:
236
题意:给一个字符串A,只含小写字符数个。再给一个字符串B,含小写字符数个。规则如下:1、字符串B从左至右逐个字符遍历,对于每个字符,如果该字符在A中存在,将A中所有该字符删掉,若不存在,则错误次数+1。2、当错误次数达到7时,游戏结束,输了lose。3、当串A中已经没有字符了,游戏结束,赢了win。...
分类:
其他好文 时间:
2015-06-19 13:29:04
阅读次数:
172
题目大意:这是一个猜单词的游戏。输入回合数(但回合数为-1的时候停止)再输入一个待猜的单词B最后输入你猜的单词组合A。这个猜单词比较有意思的地方是他一个一个判断。从你输入的A中,按照顺序一个一个字母来判断。当B中有这个字母的时候,这个字母就被标记(所有在B中相同的都被标记)。当B中没有这个字母的时候...
分类:
其他好文 时间:
2015-06-09 23:30:58
阅读次数:
163