C/C++教程

c++简单随机数

本文主要是介绍c++简单随机数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<iostream>
#include<ctime>
#include<cstdlib> 
using namespace std;
int random(int n)
{
	return (long long)rand()*rand%n; 
}

int main()
{
	srand(unsigned(time(0)));
	//
	//求负数随机数,先产生0-2n之间的随机整数,再减去n就得到了-n - n 之间的数
	  
}
这篇关于c++简单随机数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!