//1.电脑生成一个随机数
//2.猜数字
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void game()
{
//1.生成随机数
int ret = 0;
int guess = 0;//接收猜的数字
//拿时间戳来设置随机数的生成起始点
ret = rand()%100+1;//生成1-100随机数
//printf("%d\n", ret);
//2.猜数字
while (1)
{
printf("请猜数字:");
scanf_s("%d", &guess);
if (guess > ret)
{
printf("猜大了\n");
}
else if (guess < ret)
{
printf("猜小了\n");
}
else {
printf("猜对了");
break;
}
}
}
void menu()
{
printf("*******************************\n");
printf("****1. play 0.exit *******\n");
printf("*******************************\n");
}
int main()
{
int input = 0;
srand((unsigned int)time(NULL));
do {
menu();
printf("请选择");
scanf_s("%d", &input);
switch (input)
{
case 1:
game();
break;
case 0:
printf("退出游戏\n");
break;
default:
printf("选择错误\n");
break;
}
} while (input);
return 0;
}
猜数字游戏
最新推荐文章于 2025-05-28 15:51:16 发布