返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[6]={"六福村","九族文化村","劍湖山","溪頭妖怪村","麗寶樂園","義大世界"};
  7.     int a;
  8.     srand(time(NULL));
  9.     cout<<"\/\/\/\/ 抽籤程式 \/\/\/\/"<<endl;
  10.     cout<<"明天要去哪裡玩?"<<endl<<endl;
  11.     system("pause");
  12.     system("cls");
  13.     for(int i=0; i<=150; i++)
  14.     {
  15.         a=rand()%6;
  16.         if(i%2==0)
  17.             cout<<"//////// 抽籤中 \\\\\\\\"<<endl;
  18.         else
  19.             cout<<"\\\\\\\\ 抽籤中 ////////"<<endl;
  20.         cout<<name[a]<<endl;
  21.         system("cls");
  22.     }
  23.     cout<<"去"<<name[a]<<"!"<<endl<<endl;
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

返回列表