#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void menu()//主菜单
{
printf("--- 1. 开始游戏 -------- 0. 退出游戏----\n");
}
void game()
{
//1.生成一个随机数
int ret = 0;
int guess = 0;
ret = rand()%100+1;//生成1-100之间的随机数,随机数区间可以更改
//rand_max-32767
while(1)
{
printf("请猜数字:>");
scanf("%d",&guess);
if(guess>ret)
{
printf("猜大了\n");
}
else if(guess<ret)
{
printf("猜小了\n");
}
else
{
printf("恭喜了,猜对了!\n");
break;
}
}
}
int mian()
{
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;
}