rand函数:
头文件
#include<stdlib.h>
定义函数
int rand(void)
函数说明
rand()会返回一随机数值,范围在0至RAND_MAX 间。在调用此函数产生随机数前,必须先利用srand()设好随机数种子,如果未设随机数种子,rand()在调用时会自动设随机数种子为1。关于随机数种子请参考srand()。
返回值
返回0至RAND_MAX之间的随机数值,RAND_MAX定义在stdlib.h,其值为2147483647。
srand函数:
头文件
#include<stdlib.h>
定义函数
void srand (unsigned int seed);
函数说明
srand()用来设置rand()产生随机数时的随机数种子。参数seed必须是个整数,通常可以利用geypid()或time(0)的返回值来当做seed。如果每次seed都设相同值,rand()所产生的随机数值每次就会一样。
用法:
要想每次运行得到的随机数不同,我们还要设置随机数种子。
示例代码1:
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int r(int fanwei)
{
srand((unsigned)time(NULL)); //用于保证是随机数
return rand()%fanwei; //用rand产生随机数并设定范围
}
int main()
{
cout<<r(100)<<endl; //生成100以内的随机数,并显示
return 0;
}
示例代码2:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char *argv[])
{
int i;
srand((int) time(0));
for(i=0;i< 10;i++)
{
printf(" %d ", rand());
}
printf("n");
return 0;
}
示例代码3:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char *argv[])
{
int i, nu;
srand((int) time(0));
for(i=0;i< 10;i++)
{
nu = 0 + (int)( 26.0 *rand()/(RAND_MAX + 1.0));
printf(" %d ", nu);
}
printf("n");
return 0;
}