头文件:
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<string.h>
#include<Windows.h>
#include<stdlib.h>
#include<time.h>
//猜数字游戏
//1.会自动产生一个1-100间的随机数
//2.猜数字
//a.猜对了,恭喜你游戏结束。
//b.猜错了,告诉你猜大了还是猜小了,直到猜对为止。
//3.游戏可以一直玩,除非退出游戏。
void menu()
{
printf("*********************************\n");
printf("************1. play ***********\n");
printf("************0. exit ***********\n");
printf("*********************************\n");
}
void game()
{
//1.生成随机数:rand函数,#include<stdlib.h>
//2.猜数字
//3.使用srand函数来设置随机数生成器在调用rand之前;
//4.时间在不断发生变化:换算时间戳来代替随机数设置函数参数
int ret = rand() % 100+1;//%100的余数是0-99;加1就是1-100了。
int guess = 0;
while (1)
{
printf("猜猜数字:");
scanf("%d", &guess);
if (guess < ret)
{
printf("猜小了\n");
}
else if (guess > ret)
{
printf("猜大了\n");
}
else
{
printf("猜对了");
printf("%d\n", ret);
break;
}
}
}
int main()
{
int input = 0;
srand((unsigned int)time(NULL));
do
{
menu();//打印菜单
printf("请选择:");
scanf("%d", &input);
switch (input)
{
case 1:
system("cls");//清空屏幕;
game();
break;
case 0:
system("cls");//清空屏幕;
printf("退出游戏\n");
break;
default:
system("cls");//清空屏幕;
printf("选择错误\n");
break;
}
} while (input);
return 0;
}
虽然是跟着学的,但是好有成就感