Board logo

標題: 亂數 - 種子亂數 [打印本頁]

作者: 鄭繼威    時間: 2022-11-30 19:23     標題: 亂數 - 種子亂數

本帖最後由 鄭繼威 於 2022-12-7 20:04 編輯

當你不停用rand() run程式時,會發現產生出來的亂數都是一樣的,因為rand()產生的是偽隨機數字(根據亂數表),每次執行時都是相同的,給果想要不同,就要使用srand()函數初始化它

先設定亂數種子srand(),再利用 rand() 函式產生20組種子亂數。
srand()預設是1
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(5);
  7.     for(int i=1; i<=20; i++)
  8.         cout<<rand()<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 林劭杰    時間: 2022-12-7 19:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(5);
  7.     for(int i=1; i<=20; i++)
  8.         cout<<rand()<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 林劭澧    時間: 2022-12-7 19:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(5);
  7.     for(int i=1; i<=20; i++)
  8.         cout<<rand()<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 黃裕恩    時間: 2022-12-7 20:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(5);
  7.     for(int i=1; i<=20; i++)
  8.         cout<<rand()<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 李彣    時間: 2022-12-7 20:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(5);
  7.     for(int i=1; i<=20; i++)
  8.     {
  9.         cout<<rand()<<endl;
  10.     }
  11.     system("pause");   
  12.     return 0;
  13. }
複製代碼

作者: 李宗儒    時間: 2024-1-8 17:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     srand(8);
  7.     for(int i=1;i<=20;i++)
  8.     {
  9.         cout<<rand()<<endl;
  10.     }


  11.     return 0;
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2