如何用c语言编一个猜数游戏的程序,要用库函数random()
程序的开始由机器产生一个随机数(1~100之间,用库函数random())然后游戏者在程,若输入的数比这个数大,提示:youranswerishigh,tryagain....
程序的开始由机器产生一个随机数(1~100之间,用库函数random())然后游戏者在程,若输入的数比这个数大,提示:your answer is high,try again.否则提示:your answer is low,try again.直到猜对为止。程序可实现连续猜数,直到游戏者退出。
程序输出要求:累计游戏者猜对一个数所需次数n,当n小于7时给出:“congratulation”字样,n大于7小于15时给出bet you do it better,n大于15时,退出程序 展开
程序输出要求:累计游戏者猜对一个数所需次数n,当n小于7时给出:“congratulation”字样,n大于7小于15时给出bet you do it better,n大于15时,退出程序 展开
2个回答
展开全部
很简单的程序..
#include<stdio.h>
#include<time.h>
#include<stdlib.h>
void main()
{
int num,x,count;
srand((unsigned)time(NULL));
loop:
count=0;
num=rand()%100+1;
printf("电脑已产生一个随机数\n");
while(1)
{
count++;
printf("请输入你猜的数:");
scanf("%d",&x);
if(x==num)
{
if(count<7)
{
printf("congratulation\n");
goto loop;
}
else if(count<15)
{
printf("bet you do it better\n");
goto loop;
}
else
{
exit(0);
}
break;
}
else if(x<num)
printf("your answer is low,try again\n");
else
printf("your answer is high,try again\n");
}
}
#include<stdio.h>
#include<time.h>
#include<stdlib.h>
void main()
{
int num,x,count;
srand((unsigned)time(NULL));
loop:
count=0;
num=rand()%100+1;
printf("电脑已产生一个随机数\n");
while(1)
{
count++;
printf("请输入你猜的数:");
scanf("%d",&x);
if(x==num)
{
if(count<7)
{
printf("congratulation\n");
goto loop;
}
else if(count<15)
{
printf("bet you do it better\n");
goto loop;
}
else
{
exit(0);
}
break;
}
else if(x<num)
printf("your answer is low,try again\n");
else
printf("your answer is high,try again\n");
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询