猜随机数游戏,猜对为止
Posted zhkk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猜随机数游戏,猜对为止相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
int magic; //计算机随机生成的数
int guess; //人猜的数
int counter;//记录猜的次数
magic = rand() % 100 + 1; //1到100的随机数
counter = 0;
do{
printf("Please guess a magic number:");
scanf("%d",&guess);
counter++;
if (guess > magic)
{
printf("Wrong! Too big!
");
}
else if (guess < magic)
{
printf("Wrong! Too small!
");
}
else
printf("Right!
");
}while (guess !=magic);
printf("The number is:%d
",magic);
printf("counter = %d
",counter);
return 0;
}
以上是关于猜随机数游戏,猜对为止的主要内容,如果未能解决你的问题,请参考以下文章