c_cpp 在C中生成随机数

Posted

tags:

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

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

int main()
{
        srand(time(NULL));
        int r = rand();
        printf("%d\n", r);

        return 0;
}

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

csharp 在C#中生成一个随机数

如何在C中生成随机浮点数

在c ++中生成随机双数

在c中生成1到10之间的随机数

如何在 Bash 中生成随机数?

在 Lua 中生成统一的随机数