- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[6]={"六福村","九族文化村","劍湖山","溪頭妖怪村","麗寶樂園","義大世界"};
- int a;
- srand(time(NULL));
- cout<<"\/\/\/\/ 抽籤程式 \/\/\/\/"<<endl;
- cout<<"明天要去哪裡玩?"<<endl<<endl;
- system("pause");
- system("cls");
- for(int i=0; i<=150; i++)
- {
- a=rand()%6;
- if(i%2==0)
- cout<<"//////// 抽籤中 \\\\\\\\"<<endl;
- else
- cout<<"\\\\\\\\ 抽籤中 ////////"<<endl;
- cout<<name[a]<<endl;
- system("cls");
- }
- cout<<"去"<<name[a]<<"!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |