返回列表 發帖
  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;   
  11.     cout<<endl<<endl;
  12.     system("pause");
  13.     for(int i=1;i<=30;i++)
  14.     {
  15.         if(i%2==1)
  16.         cout<<"☆★☆抽籤中☆★☆"<<endl;
  17.         else
  18.         cout<<"★☆★抽籤中★☆★"<<endl;
  19.         cout<<"吹: "<<name[rand()%5]<<"!"<<endl;
  20.         _sleep(50);
  21.         system("cls");
  22.     }
  23.     cout<<"吹: "<<name[rand()%5]<<"!"<<endl;
  24.     cout<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表