返回列表 發帖
  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n[4];
  7.     int t=0;
  8.     srand(time(NULL));
  9.     re:
  10.     t++;
  11.     for(int j=0;j<=3;j++)
  12.     {
  13.         n[j]=rand()%10;
  14.         cout<<n[j]<<" ";
  15.     }
  16.     if(n[0]==n[1]&&n[2]==n[1]&&n[2]==n[3])
  17.     {
  18.         cout<<"總共執行了"<<t<<"次"<<endl;
  19.     }
  20.     else
  21.     {
  22.         cout<<endl;
  23.         goto re;
  24.     }
  25.     system("pause");   
  26.     return 0;
  27. }
複製代碼

TOP

返回列表