- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[5]={"[幸運獎]狗","大象","毒蛇","刺蝟","獅子"};
- int ball;
- srand(time(NULL));
- cout<<"◇◆◇抽籤程式◇◆◇"<<endl;
- cout<<"今把天你要哪種動物抱起來?"<<endl;
- system("pause");
- system("cls");
- for(int i=0; i<=150; i++)
- {
- ball=rand()%5;
- if(i%2==0)
- cout<<"▁ ▂ ▃ 抽籤中!!"<<endl;
- else
- cout<<"▅ ▆ ▇ 抽籤中!!"<<endl;
- cout<<name[ball]<<endl;
- system("cls");
- }
- cout<<"今天要把"<<name[ball]<<"抱起來"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |