我是靠谱客的博主 干净烤鸡,最近开发中收集的这篇文章主要介绍c语言猜数字游戏用while,【C语言基础】有趣的猜数字游戏。(while循环,if语句,switch语句)...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

要求:猜数字游戏的实现。代码如下:#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;

}

运行结果:

ae3e880e93974c3cd53db82afdbf972b.png

最后

以上就是干净烤鸡为你收集整理的c语言猜数字游戏用while,【C语言基础】有趣的猜数字游戏。(while循环,if语句,switch语句)...的全部内容,希望文章能够帮你解决c语言猜数字游戏用while,【C语言基础】有趣的猜数字游戏。(while循环,if语句,switch语句)...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部