码迷,mamicode.com
首页 > 其他好文 > 详细

简单猜数游戏1

时间:2017-03-03 22:35:52      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:game   guess   print   include   scan   rand   main   welcome   oid   

/*简单猜数游戏,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

标签:game   guess   print   include   scan   rand   main   welcome   oid   

原文地址:http://www.cnblogs.com/hgr123456/p/6498497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!