返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int ww = 0;
  8.     cout<<"----遊樂設施挑戰死亡抽籤----"<<endl;
  9.     cout<<"誰要挑戰呢";
  10.     while(ww!=4)
  11.     {
  12.                ww+=1;
  13.                _sleep(300);
  14.                cout<<".";
  15.     }
  16.     cout<<endl;
  17.     srand(time(NULL));
  18.     string ch[] = {"老子","荀子","孔子","孟子"} ;
  19.     for(int y=0;y<=99;y++)
  20.     {
  21.             if(y%2==0)
  22.             {
  23.                       cout<<"-*-抽籤中-*-"<<endl;
  24.                       _sleep(60);
  25.             }
  26.             else
  27.             {
  28.                       cout<<"*-*抽籤中*-*"<<endl;
  29.                       _sleep(60);
  30.             }
  31.     }
  32.     cout<<"恭喜"<<ch[rand()%4]<<"被選中了"<<endl;
  33.     cout<<"我們為他默哀"<<endl;
  34.     system("pause");
  35.     return 0;
  36. }
複製代碼

TOP

返回列表