返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int a, b, c, r;
  9.     string name[]={"子耕","思惟","璽安","侑成","挺桂"};
  10.     for(int i=1; i<=1; i++)
  11. {
  12.         int a=-1, b=-1, c=-1;
  13.         cout<<"負責打掃廁所的: ";
  14.         for(int j=1; j<=3; j++)
  15. {
  16.             r=rand()%4;
  17.             if(a!=r && b!=r && c!=r)
  18. {
  19.                 cout<<name[r]<<" ";
  20.                 c=b;
  21.                 b=a;
  22.                 a=r;


  23.             }
  24.             else{
  25.                 j--;
  26.             }
  27.         }
  28.         cout<<endl;
  29.         _sleep(500);
  30.     }
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

TOP

返回列表