简单猜数游戏2
Posted HGR
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单猜数游戏2相关的知识,希望对你有一定的参考价值。
/*简单猜数游戏,magic number#2,版本*/
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
int magic; /*magic number*/
int guess; /*user‘s guess*/
printf("\nWelcome to the magic number game\n");
magic=rand(); /*产生随机数*/
printf("\nGuess the magic number:");
scanf("%d",&guess);
if(guess==magic)
{
printf("***Right***\n");
printf("%d is the magic number\n",magic);
}
else
{
printf("Wrong,");
if(guess>magic)
printf("too high\n");
else
printf("too low\n");
}
system("PAUSE");
return 0;
} /*end main*/
以上是关于简单猜数游戏2的主要内容,如果未能解决你的问题,请参考以下文章