- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- string name[5]={"長笛","豎笛","雙簧管","法國號","巴松管"};
- cout<<"★☆★抽籤程式★☆★"<<endl;
- cout<<"今天要吹甚麼樂器?"<<endl<<endl;
- system("pause");
- for(int i=1;i<=30;i++)
- {
- if(i%2==1)
- cout<<"★☆★抽籤程式★☆★"<<endl;
- else
- cout<<"☆★☆抽籤中☆★☆"<<endl;
-
- cout<<"吹: "<<name[rand()%5]<<"!"<<endl;
- _sleep(50);
- system("cls");
- }
- cout<<name[rand()%5]<<"!"<<endl;
- cout<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |