016 生成随机数

Posted huafan

tags:

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

 

 

#include "stdafx.h"
#include <stdlib.h>
#include <time.h>

// 生成随机数 - 100到200
int main(int argc, char *argv[], char **envp)

    srand((unsigned)time(NULL));

    int nLoop = 0;
    while (nLoop < 20)
    
        int i = 100 + rand() % 100;
        printf("%d\n", i);

        ++nLoop;
    

    return 0;

 

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

Qt 随机数的生成

详解随机数的生成

关于Python中的随机数生成步骤和随机数质量

Shell进阶脚本-生成随机数( $RANDOM )

R语言|生成随机数

MATLAB的简单随机生成函数