返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     string name[5]={"長笛","豎笛","雙簧管","法國號","巴松管"};
  9.     cout<<"★☆★抽籤程式★☆★"<<endl;
  10.     cout<<"今天要吹甚麼樂器?"<<endl<<endl;
  11.     system("pause");
  12.     for(int i=1;i<=30;i++)
  13.     {
  14.             if(i%2==1)
  15.                 cout<<"★☆★抽籤程式★☆★"<<endl;
  16.             else
  17.                cout<<"☆★☆抽籤中☆★☆"<<endl;
  18.    
  19.     cout<<"吹: "<<name[rand()%5]<<"!"<<endl;
  20.     _sleep(50);
  21.     system("cls");
  22.     }
  23.     cout<<name[rand()%5]<<"!"<<endl;
  24.     cout<<endl<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表