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

猜数字游戏

时间:2016-07-01 16:30:58      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:猜数字游戏

思想:由电脑产生一个随机值,猜测数字是否正确。

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
	int start = 1;
	while (start)
	{
		printf("请选择:\n");
		printf("****1.玩游戏******\n");
		printf("****0.退出游戏****\n");
		scanf_s("%d", &start);
		switch(start)
		{
			printf("****游戏开始****\n");
			case 1:
			{
				int ret = 0;
				srand((unsigned)time(NULL));
				ret = rand() % 100;//产生0到100的数字
				while (1)
				{
					int input = 0;
					printf("你猜:\n");
					scanf_s("%d", &input);
					if (input > ret)
					{
						printf("猜大了\n");
					}
					else if (input < ret)
					{
						printf("猜小了\n");
					}
					else
					{
						printf("恭喜你,猜对了!\n");
						break;
					}
				}
				printf("%d\n", ret);
			}
				break;
			case 0:
				break;
		}
	}
	system("pause");
	return 0;
}



本文出自 “岁月静好” 博客,请务必保留此出处http://01160529.blog.51cto.com/11479142/1794900

猜数字游戏

标签:猜数字游戏

原文地址:http://01160529.blog.51cto.com/11479142/1794900

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