From 2ffc4d5eaacee9ab1a7467a665d61f1dd70a7c93 Mon Sep 17 00:00:00 2001 From: flykhan Date: Fri, 16 Jun 2023 16:32:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=9A=8F=E6=9C=BA=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- day5/d7.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 day5/d7.cpp diff --git a/day5/d7.cpp b/day5/d7.cpp new file mode 100644 index 0000000..10467e2 --- /dev/null +++ b/day5/d7.cpp @@ -0,0 +1,20 @@ +// 测试随机数 +#include +#include // C++兼容C语言的标准库 +#include // C++兼容C语言的时间库 + +using namespace std; + +// stand(数值) 设置随机数种子, 一般使用 time(NULL) 获取当前时间 (相对于1970年1月1日的秒数) 作为随机数种子 +// rand() 生成 0 ~ RAND_MAX 之间的随机数 +// 如果随机产生 (min, max) 区间的随机数, 可以使用 rand() % (max - min + 1) + min +int main() +{ + // 将当前时间作为随机数种子 (作用: 不同时间产生的随机数不同) + srand(time(NULL)); // 设置随机数种子 + // 生成 60~100 之间的随机数 + int num = rand() % 41 + 60; + cout << num << endl; + + return 0; +} \ No newline at end of file