//猜数字游戏
//基本思路:给一个随机数组,根据用户输入的值与系统给的值进行比较,如果一样则猜对了,如果不一样则进行判定是猜大了还是猜小了,重复输入,直到用户猜对.
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void menu()
{
printf("****************\n");
printf("*****1.play*****\n");
printf("*****0.exit*****\n");
printf("****************\n");
}
void Game()
{
int num = rand() % 100 + 1;
int input = 0;
while (1)
{
printf("请输入您猜的数字:");
scanf("%d",&input);
if (input > num)
{
printf("猜大了\n");
}
else if (input < num)
{
printf("猜小了\n");
}
else
{
printf("恭喜你猜对了\n");
break;
}
}
}
int main()
{
srand((unsigned int)time(0));
menu();
while (1)
{
printf("请选择:");
int choice = 0;
scanf("%d", &choice);
if (choice == 1)
{
Game();
}
else if (choice == 0)
{
break;
}
}
}
C语言---猜数字游戏
最新推荐文章于 2023-04-18 23:41:07 发布
本文介绍了如何在C语言中使用rand()函数生成随机数,用于实现猜数字游戏。通过rand() % n的方式调整随机数范围,并结合time()函数设置随机数种子,确保每次运行的随机性。此外,还讲解了时间戳的概念及其在C语言中的应用。
摘要由CSDN通过智能技术生成