#include <stdio.h>
#include <stdlib.h>
#include <time.h>
//
// 猜数字游戏
// 1.生成随机一个1-100的随机数
// 2.猜数字
// a.猜对了,恭喜你,游戏结束
// b.猜错了,继续猜
//3.游戏能一直玩,直到你结束游戏
//
void menu()
{
printf("*********************************\n");
printf("********** 1.PLAY **********\n");
printf("********** 0.EXIT **********\n");
printf("*********************************\n");
}
void game()
{
// 猜数字游戏的实现
//1.生成随机数
//rand函数返回了一个0-32767之间的数字
//时间--时间戳
int ret = rand() % 100 + 1;
//2.猜数字
int guess = 0;
while (1)
{
printf("请猜数字:");
scanf("%d ", &guess);
if (guess < ret)
{
printf("猜小了\n");
}
else if (guess > ret)
{
printf("猜大了\n");
}
else
{
printf("恭喜你,猜对了\n");
break;
}
}
}
int main()
{
int input = 0;
srand((unsigned int)time(NULL));
do
{
menu();//打印菜单
printf("请输入:");
scanf("%d", &input);
switch (input)
{
case 1:
game();
break;
case 0:
printf("退出游戏\n");
break;
default:
printf("输入错误,请重新输入\n");
break;
}
} while (input);
return 0;
}