返回列表 發帖

產生介於指定範圍內的隨機亂數 (五)

本帖最後由 鄭繼威 於 2024-2-5 20:48 編輯

產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。
_sleep(N)可讓程式暫停執行N毫秒

本帖隱藏的內容需要回復才可以瀏覽

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

TOP

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

  5. int main()
  6. {
  7.    srand(time(NULL));
  8.    
  9.    int n[4];         
  10.    
  11.    for(int i=1;i<=20;i++)
  12.    {
  13.                   
  14.                    for(int j=0;j<=3;j++)
  15.                    {

  16.                         n[j]=rand()%10;
  17.                         cout<<n[j]<<" ";
  18.                 }
  19.                 cout<<endl;      
  20.                 _sleep(500);            }              
  21.    
  22.    system("pause");   
  23.    return 0;
  24. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int a[0];
  7.     srand(time(NULL));
  8.     for(int i=0;i<=20;i++)
  9.     {   
  10.          for(int j=0;j<=3;j++)
  11.          {   
  12.              a[j]=rand()%10;
  13.              cout<<a[j]<<" ";  
  14.          }
  15.          cout<<endl;
  16.          _sleep(500);
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼
Attention Seeker </3

TOP

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

TOP

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

TOP

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

TOP

本帖最後由 黃品禎 於 2023-6-21 19:03 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {   int n[4];
  7.     srand(time(NULL));
  8.   for (int i=1;i<=20;i++)
  9.   {
  10.       for(int j=0;j<=3;j++)
  11.       {
  12.       n[j]=rand()%10;
  13.       cout<< n[j]<<"  ";
  14.    
  15.       }
  16.      cout<<endl;
  17.        _sleep(500);
  18.       }
  19.       system ("pause");
  20. return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         //產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。_sleep(N)可讓程式暫停執行N毫秒
  8.        

  9.         srand(time(NULL));
  10.     for(int i=1; i<=20; i++){
  11.             for(int j=1; j<=4; j++){
  12.             cout<<rand()%10<<"        ";
  13.            
  14.                 }
  15.                 cout<<endl;
  16.                 _sleep(500);
  17.         }
  18.         
  19.     system("pause");   
  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         //產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。_sleep(N)可讓程式暫停執行N毫秒
  8.        

  9.         srand(time(NULL));
  10.         int n[4];
  11.     for(int i=1; i<=20; i++){
  12.             for(int j=1; j<=4; j++){
  13.             n[j-1]=rand()%10;
  14.            
  15.                 }
  16.                 for(int k=0;k<=3;k++){
  17.                         cout<<n[k]<<"        ";
  18.                 }
  19.                 cout<<endl;
  20.                 _sleep(500);
  21.         }
  22.         
  23.     system("pause");   
  24.     return 0;
  25. }
複製代碼

TOP

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

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

返回列表