返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.     re:
  8.     system("cls");
  9.     srand(time(NULL));
  10.     int r[4] = {};
  11.     for (int i = 0; i < 4; i++)
  12.     {
  13.      r[i] = rand() % 10;
  14.           for(int j = 0; j < i; j++)
  15.           {
  16.                   if(r[i] == r[j])
  17.                   {
  18.                           i--;
  19.                           break;
  20.                   }
  21.           }
  22.      }        
  23.         cout << "4個介於0~9的不重複隨機亂數為: ";
  24.         for (int p = 0;p < 4; p++)
  25.         {
  26.             cout << r[p] ;
  27.         }
  28.         cout << endl;
  29.         system("pause");
  30.         goto re;
  31.         return 0;
  32. }
複製代碼

TOP

返回列表