码迷,mamicode.com
首页 > 编程语言 > 详细

使用C++ 11自带的库函数生成随机数

时间:2015-09-10 15:45:27      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

#include <random>
#include <iostream>
using namespace std;

void random_number() {
    default_random_engine g;
    uniform_int_distribution<int> rand(0,9);
    for (int i=0; i<10; i++) cout << rand(g) << " ";
    cout << endl;
    uniform_real_distribution<float> uniform(0,1);
    for (int i=0; i<10; i++) cout << uniform(g) << " ";
    cout << endl;
}

int main() {
    random_number();
    return 0;
}

  

需要C++ 11 支持。

使用C++ 11自带的库函数生成随机数

标签:

原文地址:http://www.cnblogs.com/marginalman/p/4797867.html

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