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()生成随机数的主要内容,如果未能解决你的问题,请参考以下文章