C语言实现猜数字小游戏

时间:2022-07-07 19:30:44

本文实例为大家分享了C语言猜数字的具体代码,供大家参考,具体内容如下

一、描述

猜数字游戏。

二、 程序

使用srand((unsigned)time(NULL)),产生随机数种子。
int random = rand() % 100 + 1,产生0~100之间的随机数。
应加上头文件#include<time.h>

?
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
#include<stdio.h>
#include<windows.h>
#include<time.h>
void menu(){
 printf("#######################\n");
 printf("#    1 Play    #\n");
 printf("#    0 Exit    #\n");
 printf("#######################\n");
}
void Play(){
 int m = 0;
 int random = rand() % 100 + 1;
 while (1)
 {
 printf("请输入一个数字:\n");
 scanf_s("%d", &m);
 if (m == random){
  printf("你猜对了\n");
  break;
 }
 else if (m > random){
  printf("你猜大了,请重新输入!");
 }
 else{
  printf("你猜小了,请重新输入!");
 }
 }
}
 int main()
 {
 srand((unsigned)time(NULL));
 int select = 0;
 do {
 menu();
 printf("请选择:");
 scanf_s("%d", &select);
 switch (select)
 {
 case 1:
  Play();
  break;
 case 0:
  printf("ByeBye!\n");
  break;
 default:
  printf("输入错误,请重新输入!\n");
  break;
 }
 } while (select);
 system("pause");
 return 0;
}

三、运行结果

C语言实现猜数字小游戏

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_45328505/article/details/103216350