返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[5]={"乞丐","毛毛蟲","狗","貓","豬"};
  7.     srand(time(NULL));
  8.     cout<<"☆★☆大家來抽籤 ☆★☆" <<endl<<"你前世是什麼?"<<endl;
  9.     system("pause");
  10.     system("cls");
  11.     for(int i=0;i<=50;i++)
  12.     {
  13.         if(i%2==0)
  14.                  cout<<"☆★☆抽籤中 ☆★☆"<<endl;
  15.         else
  16.                  cout<<"★☆★抽籤中 ★☆★"<<endl;
  17.         cout<<name[rand()%5];
  18.         if(i<25)
  19.           _sleep(40);
  20.         else
  21.            _sleep(40+(i-24)*(i-24));
  22.         system("cls");
  23.     }
  24.     cout<<"是 : "<<name[rand()%5]<<"!"<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表