- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[6]={"畫畫","看書","玩電腦","逛街","看電影","看電視"};
- int ball;
- srand(time(NULL));
- cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
- cout<<"今天晚上要做什麼?"<<endl<<endl;
- system("pause");
- system("cls");
- for(int i=0; i<=150; i++)
- {
- ball=rand()%6;
- if(i%2==0)
- cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
- else
- cout<<"★☆★ 抽籤中 ★☆★"<<endl;
- cout<<name[ball]<<endl;
- system("cls");
- }
- cout<<"今天晚上要:"<<name[ball]<<"!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |