兰特
生成一个伪随机数字。 此功能的一种较为安全的版本可用,请参见 rand_s。
int rand( void );
返回值
rand 返回一个伪随机数字,如上所述。 无错误返回。
备注
rand 函数返回该范围为 0 到 RAND_MAX (32767) 的一个伪随机整数。 使用 srand 功能在调用 rand之前为伪随机数字生成器。
要求
实例 |
必需的头 |
---|---|
rand |
stdlib.h |
有关其他的兼容性信息,请参见中介绍的 兼容性 。
示例
// crt_rand.c
// This program seeds the random-number generator
// with the time, then exercises the rand function.
//
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
void SimpleRandDemo( int n )
{
// Print n random numbers.
int i;
for( i = 0; i < n; i++ )
printf( " %6d\n", rand() );
}
void RangedRandDemo( int range_min, int range_max, int n )
{
// Generate random numbers in the half-closed interval
// [range_min, range_max). In other words,
// range_min <= random number < range_max
int i;
for ( i = 0; i < n; i++ )
{
int u = (double)rand() / (RAND_MAX + 1) * (range_max - range_min)
+ range_min;
printf( " %6d\n", u);
}
}
int main( void )
{
// Seed the random-number generator with the current time so that
// the numbers will be different every time we run.
srand( (unsigned)time( NULL ) );
SimpleRandDemo( 10 );
printf("\n");
RangedRandDemo( -100, 100, 10 );
}