返回列表 發帖

產生介於指定範圍內的隨機亂數 (六)-不重複

本帖最後由 鄭繼威 於 2023-2-25 14:58 編輯

一樣產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。
重點組內不重複之隨機亂數.

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         srand(time(NULL));
  8.         //執行20組的迴圈
  9.         for(int j=1;j<=20;j++){
  10.            int n[4];
  11.            //產生4次的亂數
  12.            for(int i=0; i<=3; i++)
  13.                {
  14.                   //0~9
  15.               n[i]=rand()%10;
  16.               //檢查
  17.               for(int k=0;k<=i-1 ;k++)
  18.               {
  19.                  if(n[i]==n[k])
  20.                 {
  21.                    //如果跟前i個一樣就退一步
  22.                    i--;       
  23.                  }
  24.                     }
  25.             }
  26.             for(int i=0; i<=3; i++)
  27.             {
  28.            cout<<n[i]<<" ";
  29.            _sleep(500);
  30.             }
  31.             cout<<endl;
  32.            
  33.         }
  34.        
  35.     system("pause");   
  36.     return 0;
  37. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表