Board logo

標題: 亂數 - 固定亂數 [打印本頁]

作者: 王瑞喻    時間: 2021-1-7 21:21     標題: 亂數 - 固定亂數

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

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

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

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

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

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

本帖最後由 林土水 於 2021-1-9 19:44 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=20; i++)
  7.         cout<<rand()<<endl;
  8.     system("pause");   
  9.     return 0;
  10. }
複製代碼

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  4. int main()
  5. {
  6.         for(int i=1;i<=20;i++)
  7.                 cout<<rand()<<endl;
  8.         system("pause");
  9.         return 0;   
  10. }
複製代碼





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