函數名:srand
頭檔:<stdlib.h>
函式原型: void srand(unsigned seed);
功能: 用於初始化隨機數的產生器
參數: unsigned seed 要設定隨機時間的種子,其值為整數
傳回值:沒有傳回值
程式範例:使用此函數產生不同的隨機整數序列
#include<stdio.h>#include<stdlib.h>#include<time.h>intmain(void){inti;srand((unsigned)time(NULL));printf(Tworandomnumbersfrom0to99n);for(i= 0;i<5;i++){printf(%d,rand()%100);}putchar('n');return0;}
運行結果
Tworandomnumbersfrom0to993719512261