Board logo

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

作者: 王瑞喻    時間: 2021-1-7 21:30     標題: 亂數 - 種子亂數

先設定亂數種子,再利用 rand() 函式產生20組種子亂數。
  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. }
複製代碼

作者: 蔡旭恩    時間: 2021-1-9 19:25

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

作者: 柏霖    時間: 2021-1-9 19:30

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

作者: 顏宇鋒    時間: 2021-1-9 19:30

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

作者: 曾元瑜    時間: 2021-1-9 19:30

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

作者: 林土水    時間: 2021-1-9 19:31

本帖最後由 林土水 於 2021-1-9 19:43 編輯
  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. }
複製代碼

作者: 張博翔    時間: 2021-1-9 19:31

  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. }
複製代碼

作者: 張博竣    時間: 2021-1-9 19:31

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

作者: 黃韋誌    時間: 2021-1-9 19:31

  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. }
複製代碼

作者: 文硯    時間: 2021-1-9 19:31

  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. }
複製代碼

作者: 趙品昀    時間: 2021-1-9 19:32

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

作者: 吳湘儀    時間: 2021-1-9 19:33

  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. }
複製代碼

作者: 蔡坤辰    時間: 2021-1-9 19:36

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

作者: 朱嚴寘    時間: 2021-4-28 20:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(100);//亂數種子可以是0或正整數或負整數
  7.     for(int i=1; i<=20; i++)
  8.         cout<<rand()<<endl;
  9.     system("pause");   
  10.     return 0;
  11. }
複製代碼

作者: 洪勻蓁    時間: 2021-5-4 20:51

  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. }
複製代碼





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