亂數 -- rand() 與 srand()

1.標頭檔: #include<stdlib.h>
                 #include<time.h>

2.rand():產生一個整數的亂數
   srand():設定亂數產生的種子

3.範例

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
main()
{
        srand((unsigned) time(NULL));
        printf("%d",rand());
        system("PAUSE");
}

可以嘗試將 srand() 刪除,並重複執行幾次,你就會發現設定亂數種子的必要性了。