zoukankan      html  css  js  c++  java
  • c++11 随机代码记录

    // 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;
    }

    记录

  • 相关阅读:
    CSRF-防御与攻击
    windows 命令
    Integer.parseInt(String str, int i)
    springCloud springmvc 七牛云存储整合百度富文本编辑器
    jsp 文件
    标签的使用
    富文本编辑器
    项目总结 js
    namenode 和 datanode 节点
    Hadoop wordcount
  • 原文地址:https://www.cnblogs.com/itdef/p/5002460.html
Copyright © 2011-2022 走看看