首页 > 编程语言 > 详细

c++11 随机代码记录

时间:2015-11-28 13:28:55      阅读:238      评论:0      收藏:0      [点我收藏+]
// RadomTest.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <random>
#include <time.h>

using namespace std;

int main()
{

        std::default_random_engine random(time(NULL));
        std::uniform_int_distribution<int> dis1(0, 100);
    

        for (int i = 0; i < 10; ++i)
            cout << dis1(random) << endl;
        cout << endl;
        //==========================================
        std::random_device rd;

        std::default_random_engine e(rd());

        std::uniform_int_distribution <> u(0, 100);

        for (size_t i = 0; i < 10; i++) {

            cout << u(e) << endl;

        }
    
    
    return 0;
}

记录

c++11 随机代码记录

原文:http://www.cnblogs.com/itdef/p/5002460.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!