返回列表 發帖

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

本帖最後由 鄭繼威 於 2022-4-16 10:59 編輯

前情提要:[作業] 產生介於指定範圍內的隨機亂數 (四)
產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。

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

  5. int main(){
  6.     cout<<"4個介於0~9的隨機亂數:"<<endl;   
  7.    
  8.     int n[4];        //一組4個數
  9.     int j=1;        //組數
  10.     srand(time(NULL));//設定以隨機亂數來產生亂數
  11.     //巢狀迴圈
  12.     while(j<=20){                              //最外面的20次迴圈->決定第?組
  13.          for(int i=0; i<4; i++){               // 跑4次的迴圈->每1組裡面有4個數字
  14.                  n[i]=rand()%10; //0~9         //隨機數放入陣列裡
  15.                  cout<<n[i]<<" ";              //輸出隨機數+空格
  16.          }            
  17.          cout<<endl;
  18.          _sleep(500);                          //跑產生1組數後就休息500毫秒            
  19.          j++;                                   
  20.     }
  21.    
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

本帖最後由 曾善勤 於 2022-4-16 11:02 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"4個介於0~9的隨機亂數:"<<endl;
  8.    
  9.     srand(time(NULL));
  10.     int n[4];        
  11.     int j=1;        
  12.     while(j<=20)
  13.     {
  14.         for(int i=0; i<4; i++)
  15.         {
  16.              n[i]=rand()%10;   //0~9
  17.              cout<<n[i]<<" ";
  18.         }
  19.         cout<<endl;
  20.         _sleep(500);
  21.         j++;
  22.     }      
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

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

TOP

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

TOP

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


  11. while(j<=20)
  12. {
  13.     for(int i=0;i<4;i++)
  14.     {
  15.          n[i]=rand()%10;
  16.          cout<<n[i]<<" ";                     
  17.     }
  18.     cout<<endl;
  19.     _sleep(500);
  20.     j++;         
  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.     cout<<"4個介於0~9的隨機亂數:"<<endl;
  8.    
  9.     srand(time(NULL));
  10.     int n[4];   
  11.     int j=1;      
  12.     while(j<=20)
  13.     {
  14.         for(int i=0; i<4; i++)
  15.         {
  16.              n[i]=rand()%10;  
  17.              cout<<n[i]<<" ";
  18.         }
  19.         cout<<endl;
  20.         _sleep(500);
  21.         j++;
  22.     }      
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

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

TOP

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

TOP

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

  5. int main(){
  6.     cout<<"4個介於0~9的隨機亂數:"<<endl;   
  7.    
  8.     int n[4];        //一組4個數
  9.     int j=1;        //組數
  10.     srand(time(NULL));//設定以隨機亂數來產生亂數
  11.     //巢狀迴圈
  12.     while(j<=20){                              //最外面的20次迴圈->決定第?組
  13.          for(int i=0; i<4; i++){               // 跑4次的迴圈->每1組裡面有4個數字
  14.                  n[i]=rand()%10; //0~9         //隨機數放入陣列裡
  15.                  cout<<n[i]<<" ";              //輸出隨機數+空格
  16.          }            
  17.          cout<<endl;
  18.          _sleep(500);                          //跑產生1組數後就休息500毫秒            
  19.          j++;                                   
  20.     }
  21.    
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

TOP

  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.     int j=1;        
  10.     while(j<=20)
  11.     {
  12.         for(int i=0; i<4; i++)
  13.         {
  14.              n[i]=rand()%10;   
  15.              cout<<n[i]<<" ";
  16.         }
  17.         cout<<endl;
  18.         _sleep(500);
  19.         j++;
  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.     cout<<"4個介於0~9的隨機亂數:"<<endl;   
  8.     int n[4];
  9.     int j=1;
  10.     srand(time(NULL));
  11.     while(j<=20){
  12.         for(int i=0; i<4; i++)
  13.                 {
  14.             n[i]=rand()%10;
  15.             cout<<n[i]<<" ";              
  16.         }            
  17.         cout<<endl;
  18.         _sleep(500);                        
  19.         j++;                                   
  20.     }
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

TOP

返回列表