Board logo

標題: [隨堂測驗] 產生介於指定範圍內的隨機亂數 (三) [打印本頁]

作者: may    時間: 2023-2-4 09:20     標題: [隨堂測驗] 產生介於指定範圍內的隨機亂數 (三)

試產生50組範圍介於19~27之間的隨機亂數。
作者: 盧禹丞    時間: 2023-2-4 15:03

本帖最後由 盧禹丞 於 2023-2-4 15:12 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     for(int i=1; i<=50; i++)
  9.         cout<<rand()%9+19<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 羅紹齊    時間: 2023-2-4 15:04

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

作者: 徐啟祐    時間: 2023-2-4 15:04

本帖最後由 徐啟祐 於 2023-2-4 15:05 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     for(int i=1;i<=50;i++){
  9.             cout<<rand()%9+19<<endl;
  10.             }
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 陳泓亦    時間: 2023-2-4 15:04

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

作者: 葉佳和    時間: 2023-2-4 15:04

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

作者: 陳牧謙    時間: 2023-2-4 15:05

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

作者: 羅暐傑    時間: 2023-2-4 15:06

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

作者: 楊芊琦    時間: 2023-2-4 15:06

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

作者: 吳俊頡    時間: 2023-2-4 18:59

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

作者: 陳宥霖    時間: 2023-2-9 21:07

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

作者: 翁川祐    時間: 2023-2-10 10:50

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

作者: 宜儒    時間: 2023-2-22 21:21

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





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