C++产生随机数示例

#include <iostream>
#include <cstdlib>
#include <ctime>
using std::cout;
using std::endl;
int main(void){
	
	//使用默认种子值产生随机数,每次产生的都一样
	cout << rand() << " " << rand() << " " << rand() << endl;
	
	//使用新种子产生随机数,每次都不一样
	srand((unsigned int)time(0));
	cout << rand() << " " << rand() << " " << rand() << endl;
	return 0;
}


 

C++产生随机数示例,布布扣,bubuko.com

C++产生随机数示例

上一篇:XStream 用法详解 XML 转换为 java 实体类


下一篇:巧妙地解决Java文件重命名失败的问题