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

C++生成随机数

时间:2016-09-03 22:35:58      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

//产生区间[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++生成随机数

标签:

原文地址:http://www.cnblogs.com/runningRain/p/5838093.html

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