C++生成随机数
Posted 积跬步---行千里
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++生成随机数相关的知识,希望对你有一定的参考价值。
//产生区间[a,b]内的随机数(整数)
#include<iostream>
#include <ctime>
using namespace std;
void main()
{
int a,b,c;
srand((double)time(NULL));
cout<<"please input the range: ";
cin>>a>>b;
for(int i=0;i<5;i++)
{
c=a+rand()%(b-a+1);
cout<<c<<" ";
}
system("pause");
}
//生成随机的小数
#include<iostream>
#include <ctime>
using namespace std;
void main()
{
srand((unsigned int)time(NULL));
for(int i=0;i<10;i++)
{
cout<<(float)rand()/RAND_MAX<<endl;
}
system("pause");
return;
}
以上是关于C++生成随机数的主要内容,如果未能解决你的问题,请参考以下文章