猜数游戏
编程先由计算机“想”一个1~100之间的数请人猜,如果人猜对了,在屏幕上输出人猜了多少次才猜对此数,以此来反映猜数者“猜”的水平,则结束游戏;否则计算机给出提示,告诉人所猜的数是太大还是太小,最多可以猜10次,如果猜了10次仍未猜中的话,则停止本次猜数,然后继续猜下一个数。每次运行程序可以反复猜多个数,直到操作者想停止时才结束。
【思考题】 如果用户输入用户猜测的数据时,如果用户不小心输入了非法字符,如字符a,那么程序运行就会出错,用什么方法可以避免这样的错误发生呢?请读者编写程序验证方法的有效性。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
void youxi()
{
srand ( time (0));
int number = rand () % 100 + 1;
int count = 0;
int a = 0;
while (a != number&&count<10)
{
cout << "请猜一个1到100之间的数:" ;
fflush (stdin);
scanf ( "%d" ,&a);
if (!(a>0 && a<100))
{
cout << "请输入有效且符合条件的数字!" << endl;
}
else
{
count++;
if (a > number)
{
cout << "Wrong!" ;
cout << "Too high!" << endl;
}
else if (a < number)
{
cout << "Wrong!" ;
cout << "Too low!" << endl;
}
if (a != number) a = 0;
}
}
if (count == 10)
cout << "尝试次数超过10次,游戏已结束。下次加油哦!" << endl;
else
cout << "Right!" << "你用了" << count << "次就猜到了答案。" << endl;
}
int main()
{
while (1)
{
youxi();
cout << "想再来一次吗?想请按1,结束请按2." << endl;
int a;
cin >> a;
cout << endl;
if (a != 1) break ;
}
system ( "pause" );
return 0;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_45918304/article/details/106034244