返回列表 發帖
  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.             {
  26.                 j--;
  27.             }
  28.         }
  29.         cout<<endl;
  30.         _sleep(500);
  31.     }
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

返回列表