问题
在一个程序中,一个数字已经被初始化为某个常数。在这里,我们需要要求用户猜测已经在程序中的那个数字。为此,我们需要为每次用户输入数字提供一些线索。
解决方案
用于猜测数字的逻辑如下所示−
do{ if(num==guess){ flag=0; } else if(guess"); count++; } else { flag=1; printf("Your guess is greater than the number
"); count++; } if(flag==1) { printf("sorry wrong enter! once again try it
"); scanf("%d",&guess); }} while(flag);
登录后复制
Example
以下是猜数字游戏的C程序。
实时演示
#includemain() { int i,num=64,flag=1,guess,count=0; printf("guess the number randomly here are some clues later"); scanf("%d",&guess); do { if(num==guess) { flag=0; } else if(guess
"); count++; } else { flag=1; printf("Your guess is greater than the number
"); count++; } if(flag==1) { printf("sorry wrong enter! once again try it
"); scanf("%d",&guess); } } while(flag); printf("Congratulations! You guessed the correct number %d
",num); printf("Total number of trails you attempted for guessing is: %d
",count);}
登录后复制
输出
当上述程序被执行时,它产生以下输出 −
guess the number randomly here are some clues later45Your guess is lower than the numbersorry wrong enter! once again try it60Your guess is lower than the numbersorry wrong enter! once again try it70Your guess is greater than the numbersorry wrong enter! once again try it65Your guess is greater than the numbersorry wrong enter! once again try it62Your guess is lower than the numbersorry wrong enter! once again try it64Congratulations! You guessed the correct number 64Total number of trails you attempted for guessing is: 5
登录后复制
以上就是编写一个C程序来进行猜数字游戏的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2582416.html