- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[5]={"乞丐","毛毛蟲","狗","貓","豬"};
- srand(time(NULL));
- cout<<"☆★☆大家來抽籤 ☆★☆" <<endl<<"你前世是什麼?"<<endl;
- system("pause");
- system("cls");
- for(int i=0;i<=50;i++)
- {
- if(i%2==0)
- cout<<"☆★☆抽籤中 ☆★☆"<<endl;
- else
- cout<<"★☆★抽籤中 ★☆★"<<endl;
- cout<<name[rand()%5];
- if(i<25)
- _sleep(40);
- else
- _sleep(40+(i-24)*(i-24));
- system("cls");
- }
- cout<<"是 : "<<name[rand()%5]<<"!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |