- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- string name[5]={"長笛","豎笛","雙簧管","法國號","小喇叭"};
- cout<<"☆★☆抽籤程式☆★☆"<<endl;
- 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;
- system("pause");
- return 0;
- }
複製代碼 |