简单猜数游戏1
Posted HGR
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单猜数游戏1相关的知识,希望对你有一定的参考价值。
/*简单猜数游戏,magic number#1,版本*/
#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");
system("PAUSE");
return 0;
} /*end main*/
以上是关于简单猜数游戏1的主要内容,如果未能解决你的问题,请参考以下文章