目录
1.引言
哈喽,大家好,好久不见。今天小邓儿,将带咱们用C语言,来写一个小游戏——猜数字。
不过,编写游戏之前。先给大家拓展一些相关知识点(●'◡'●)
2.rand(包含在<stdlib.h>中)
1.1 形式 int rand (void);
1.2 rand函数会返回⼀个伪随机数,这个随机数的范围是在0~RAND_MAX之间,这个RAND_MAX的大小是依赖编译器上实现的,但是⼤部分编译器上是32767。
1.3 rand函数⽣成的随机数是伪随机的,伪随机数不是真正的随机数,是通过某种算法⽣成的随机数。真正的随机数的是⽆法预测下⼀个值是多少的。而rand函 数是对⼀个叫“种子”的基准值进行运算生成的随机数。
3.srand(包含在<stdlib.h>中)
2.1 形式 void srand (unsigned int seed);
2.2 通过srand函数的参数seed,来设置rand函数生成随机数的时候的种子。
只要种子在变化,每次生成的随机数序列也就变化起来了。
4.time(包含在<time.h>中)
3.1形式 time_t time (time_t* timer);
3.2 time函数返回的这个时间差被叫做:时间戳。(即:返回当前的日历时间。其实就是返回的1970年1⽉1⽇0时0分0秒到现在程序运行时间之间的差值,单位是秒。)
5.游戏代码showtime
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
void menu()
{
printf("******************************\n");
printf("****** 1 play *******\n");
printf("****** 0 exit *******\n");
printf("******************************\n");
}
void game()
{
int r = rand() % 100 + 1;
int guess = 0;
system("cls");
int count = 8;
while (count)
{
printf("一共有8次机会(∩_∩)\n赶快开始吧");
printf("请猜数字:(1~100之间的数字)");
scanf("%d", &guess);
if (guess > r)
{
printf("猜大了\n剩余%d次机会(⊙o⊙)\n", --count);
}
else if (guess < r)
{
printf("猜小了\n剩余%d次机会(⊙o⊙)\n", --count);
}
else
{
printf("恭喜你,猜对了,数字是:%d\n", r);
break;
}
}
if (count == 0)
{
printf("8次机会用完,游戏失败\n作为惩罚,你的电脑将在60s内关机\n除非,你输入:我是猪");
char a[20] = { 0 };
system("shutdowm -s -t 60");
tip:
printf("即将关机,除非请输入:'我是猪'就取消关机\n");
scanf("%s", a);
if (strcmp(a, "我是猪") == 0)
{
system("shutdown -a");
}
else
{
goto tip;
}
}
}
int main()
{
int input = 0;
srand((unsigned int)time(NULL));
do
{
printf("即将开始游戏,请选择是否进入游戏\n");
menu();
printf("请选择( 1 或者 0 ):");
scanf("%d", &input);
switch (input)
{
case 1:
game();
break;
case 0:
printf("游戏结束,退出游戏\n");
break;
default:
printf("选择错误\n");
break;
}
} while (input);
return 0;
}
大家可以复制下去玩一玩
标签:rand,数字,int,time,C语言,随机数,printf,游戏 From: https://blog.csdn.net/oi0825/article/details/145243676