Board logo

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

作者: 王瑞喻    時間: 2021-1-8 15:53     標題: 產生介於指定範圍內的隨機亂數 (二)

試產生20組範圍介於4~7的隨機亂數。
  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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 蔡旭恩    時間: 2021-1-9 20:03

  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<=20; i++)
  9.     cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

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

  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<=20;i++)
  9.     {
  10.       cout<<rand()%4+4<<endl;
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 文硯    時間: 2021-1-9 20:03

  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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 顏宇鋒    時間: 2021-1-9 20:03

  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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 黃韋誌    時間: 2021-1-9 20:03

  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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 林土水    時間: 2021-1-9 20: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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 張博竣    時間: 2021-1-9 20: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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }   
複製代碼

作者: 張博翔    時間: 2021-1-9 20: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<=20; i++)
  9.         cout<<rand()%3+3<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 蔡坤辰    時間: 2021-1-9 20: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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 曾元瑜    時間: 2021-1-9 20: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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
  13. /*
  14. 4~7 通通減4
  15. 0~3    在加4

  16. */
複製代碼

作者: 吳湘儀    時間: 2021-1-9 20: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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

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

  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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 文硯    時間: 2021-3-27 20:45

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"4個介於0~9的隨機亂數:"<<endl;
  7.     srand(time(NULL));
  8.     int n[4];
  9.     for(int i=1; i<=20; i++)
  10.     {
  11.         for(int j=1; j<=4; j++)
  12.         {
  13.             n[j]=rand()%10;
  14.             cout<<n[j]<<" ";
  15.         }
  16.         cout<<endl;
  17.         _sleep(500);
  18.     }  
  19.     system("pause");   
  20.     return 0;
  21. }
複製代碼

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

  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<=20; i++)
  9.         cout<<rand()%4+4<<endl;
  10.     system("pause");   
  11.     return 0;
  12. }
複製代碼

作者: 洪勻蓁    時間: 2021-5-17 19:36

  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<=20;i++)
  9.             cout<<rand()%(7-4+1)+4<<endl;
  10.     system("pause");
  11.     return 0;
  12.     }
複製代碼





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