//0——100的猜数字游戏
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
void menu()
{
printf("-------------------------------\n");
printf("---- 1:开始游戏 0:退出游戏 ----\n");
printf("-------------------------------\n");
}
void game()
{
int random=0;
int input=0;
random=rand()%100+1;
while(1)
{
printf("请输入你猜的数字:\n");
scanf("%d",&input);
if(random>input)
{
printf("猜小了\n");
}
else if(random<input)
{
printf("猜大了\n");
}
else
{
printf("恭喜你,猜对了\n");
break;
}
}
}
int main()
{
int m=0;
srand((unsigned)time(NULL));
do
{
menu();
printf("请进行选择:\n");
scanf("%d",&m);
switch(m)
{
case 0:
break;
case 1:game();
break;
default:
printf("输入错误,请重新选择\n");
break;
}
}
while(m);
return 0;
}
猜数字游戏
最新推荐文章于 2024-02-08 09:45:27 发布