概述
要求:猜数字游戏的实现。代码如下:#include
#include
#include
void menu()
{
printf("**********************************n");
printf("*********** 1.play **********n");
printf("*********** 0.exit **********n");
printf("**********************************n");
}
void game()
{
int random_num = rand()%100+1;
int input = 0;
while(1)
{
printf("请输入猜的数字:>");
scanf("%d", &input);
if(input > random_num)
{
printf("猜大了n");
}
else if(input < random_num)
{
printf("猜小了n");
}
else
{
printf("猜对了n");
break;
}
}
}
int main()
{
int input = 0;
srand((unsigned)time(NULL));
do
{
menu();
printf("请选择>:");
scanf("%d", &input);
switch(input)
{
case 1:
game();
break;
case 0:
break;
default:
printf("选择错误,请重新选择!n");
break;
}
}
while(input);
return 0;
}
运行结果:
最后
以上就是干净烤鸡为你收集整理的c语言猜数字游戏用while,【C语言基础】有趣的猜数字游戏。(while循环,if语句,switch语句)...的全部内容,希望文章能够帮你解决c语言猜数字游戏用while,【C语言基础】有趣的猜数字游戏。(while循环,if语句,switch语句)...所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复