srand()与rand()生成随机数

Posted onetrainee

tags:

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

srand()与rand()生成随机数

经过测试,当srand的值确定时,其对应的rand值也是确定的。

 

#include <iostream>
using namespace std;
int main()
{
    for (int i = 0; i <= 10; i++) {
        srand(i);
        cout << "当seed = " << i << "时,其结果为:" << rand() << endl;
    }

    cout << endl << endl << "------第二次验证---------" << endl << endl;

    for (int i = 0; i <= 10; i++) {
        srand(i);
        cout << "当seed = " << i << "时,其结果为:" << rand() << endl;
    }
}

 

 

技术图片

 

 

 

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

生成伪随机数 rand;srand函数

C语言 rand()伪随机数函数怎么生成随机数种子?(srand(time))(生成[m, n]范围内随机数方法)

函数RAND啥意思

(rand函数)随机数的生成(C语言)

C++ 生成随机数

OI对拍