码迷,mamicode.com
首页 > 编程语言 > 详细

C语言猜数字小游戏

时间:2015-05-24 08:58:27      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:c语言猜数字   猜数字游戏   

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main()
{
	int x,num,st,ed;
	char ch;
	srand((int)time(NULL));
	while(1)
	{
		printf("请输入你想要猜的数的范围(用空格隔开):");
		scanf("%d %d",&st,&ed);
		ed=ed-st+1;
		num=rand()%ed+st;
		printf("请输入你猜的数字:");
		scanf("%d",&x);
		while(x!=num)
		{
			if(x>num)
			printf("猜大了,继续努力~~\n");
			if(x<num)
			printf("猜小了,继续加油哦!\n");
			scanf("%d",&x);
		} 
		printf("真棒!猜对了!!\n");
		printf("继续玩请输入Y,否则请输入N\n");
		getchar();
		scanf("%c",&ch);
		if(ch=='Y')
		continue;
		else
		break;
	}
	return 0;
	
}

.........


技术分享

C语言猜数字小游戏

标签:c语言猜数字   猜数字游戏   

原文地址:http://blog.csdn.net/su20145104009/article/details/45937559

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