返回列表 發帖

[隨堂測驗] 產生介於指定範圍內的隨機亂數 (三)

試產生50組範圍介於19~27之間的隨機亂數。
May

本帖最後由 盧禹丞 於 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. }
複製代碼

TOP

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

TOP

本帖最後由 徐啟祐 於 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. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表