随机数生成器
Posted gavinzheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机数生成器相关的知识,希望对你有一定的参考价值。
随机数生成器
#include <iostream>
using namespace std;
#include <stdlib.h>
#include <time.h>
#define MIN 1 //随机数产生的范围
#define MAX 100000
int main()
//freopen("data.out","w",stdout);
// cout<<"100000 100000"<<endl;
srand((unsigned)time(NULL));
for(int i=1; i<=100000;i++) //产生随机数
int a=MIN + rand() % (MAX + MIN - 1);
int b=MIN + rand() % (MAX + MIN - 1);
if(a>b)swap(a,b);
cout<<a<<' '<<b<<endl;
cout<<endl;
return 0;
以上是关于随机数生成器的主要内容,如果未能解决你的问题,请参考以下文章