码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-10 20:32:36      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:二次   pre   inf   names   style   span   info   center   strong   

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()生成随机数

标签:二次   pre   inf   names   style   span   info   center   strong   

原文地址:https://www.cnblogs.com/onetrainee/p/12177659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!