C 語言標準函數庫分類導覽 - stdlib.h srand()

stdlib.h 的函數 srand() 替 rand() 產生種子,通常以 time.h 的 time() 當作參數,可以使每次產生的擬隨機數都不同。



以下程式示範使用 srand() 的使用
#include <stdlib.h>
#include <stdio.h>
#include <time.h>

int main(void)
{
    int i;
    
    srand(time(0));
    
    for (i = 1; i <= 100; i++) {
        printf("%d ", rand());
        if (i % 5 == 0) {
            printf("\n");
        }
    }
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:csrand.c
    功能:示範 stdlib.h 中函數 srand() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: