好文传送门1
好文传送门2
使用模板:
#include<bits/stdc++.h>
using namespace std;
mt19937 rnd(std::random_device{}());
int main()
{
for(int i=1;i<=10;i++)
cout<<rnd()<<" ";
return 0;
}
标签:std,mt19937,传送门,笔记,int,好文,随机数
From: https://www.cnblogs.com/zhouzhihao/p/17018835.html