【C语言】随机数

文章目录
一、随机函数种子:srand函数1. srand() 函数2. srand((unsigned int)time(NULL))
二、随机数:rand函数1.rand() 函数2.使用形式
三、实例:猜数字

一、随机函数种子:srand函数
void srand(unsigned int seed);
1. srand() 函数
1.1 srand() 函数将seed作为生成新的伪随机数序列的种子数,且seed的初始值为1。
2. srand((unsigned int)time(NULL))
2.1 time(NULL)获取的是时间戳,代表当前时间离1970年1月1日有多少秒,故不同时间获取的时间戳不同。 2.2 由于time()返回的数据类型是 time_t 故需要强制类型转换为 unsigned int 类型。 2.3 srand()函数的种子数相同,rand()函数

【C语言】随机数最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/16655.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>