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

C++随机数rand(), srand()

时间:2017-05-02 19:39:26      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:nbsp   detail   技术分享   article   rand   height   cpp   str   之间   

c++产生随机数会用到rand(), srand()函数,下面总结两个函数特性和使用。

1. rand()

技术分享

#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
	int m;
	
	for(int i = 1; i <= 5; i++)
	{
		m = rand();
		cout << "m = " << m << endl;
	}
	
	return 0;
}

 

2. srand()

 技术分享 

#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;

int main()
{
	int m;
	srand((unsigned)time(NULL));
	
	for(int i = 1; i <= 5; i++)
	{
		m = rand();
		cout << "m = " << m << endl;
	}
	
	return 0;
}

 

 3. 产生一定范围随机数的公式

获取[a,b)的随机整数,使用(rand() % (b-a))+ a; 
获取[a,b]的随机整数,使用(rand() % (b-a+1))+ a; 
获取(a,b]的随机整数,使用(rand() % (b-a))+ a + 1; 
获取0~1之间的浮点数,可以使用rand() / double(RAND_MAX)

 

 

 [参考文章:如有侵权,请告知,立即删除]

1. http://www.cnblogs.com/afarmer/archive/2011/05/01/2033715.html

2. http://blog.csdn.net/peixuan197/article/details/48084843

C++随机数rand(), srand()

标签:nbsp   detail   技术分享   article   rand   height   cpp   str   之间   

原文地址:http://www.cnblogs.com/qing2105/p/6797519.html

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