返回列表 發帖
  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.         int a=-1, b=-1, c=-1;
  12.         cout<<"掃廁所的人有: ";
  13.         for(int j=1; j<=3; j++){
  14.             r=rand()%4;
  15.             if(a!=r && b!=r && c!=r){
  16.                 cout<<name[r]<<" ";
  17.                 c=b;
  18.                 b=a;
  19.                 a=r;
  20.             }
  21.             else{
  22.                 j--;
  23.             }
  24.         }
  25.         cout<<endl;
  26.         _sleep(500);
  27.     }
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

返回列表