rand
會產生虛擬隨機數字。此函式有更安全版本,請參閱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 );
}