C:产生随机数

Posted wbyixx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C:产生随机数相关的知识,希望对你有一定的参考价值。

函数说明

#include <time.h>
time_t time(time_t *t);
功能:获取当前系统时间
参数:常设置为NULL
返回值:当前系统时间, time_t 相当于long类型,单位为毫秒

#include <stdlib.h>
void srand(unsigned int seed);
功能:用来设置rand()产生随机数时的随机种子
参数:如果每次seed相等,rand()产生随机数相等
返回值:无

#include <stdlib.h>
int rand(void);
功能:返回一个随机数值
参数:无
返回值:随机数

使用举例

#include <stdio.h>
#include <time.h>
#include <stdlib.h>

int main()
{
    time_t tm = time(NULL);//得到系统时间
    srand((unsigned int)tm);//随机种子只需要设置一次即可

    int r = rand();
    printf("r = %d
", r);

    return 0;
}

以上是关于C:产生随机数的主要内容,如果未能解决你的问题,请参考以下文章

C-Xcode真随机数的产生, 指针基础, 小技巧

C语言如何产生不重复的随机数

C语言怎样产生一定范围的随机数?

C语言产生多个0到1的随机数,要求完全分散

在C语言中怎样产生随机的字符串

线性同余法产生1000个随机数