- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- string food[8]={"蔥油餅","牛排","義大利麵","炒飯","便當","日本壽司","頓飯","油飯"};
- cout<<"◇◆◇抽籤程式◇◆◇"<<endl;
- cout<<"今天晚餐\吃:"<<food[rand()%5];
- system("pause");
- for(int i=1; i<=30; i++)
- {
- if(i%2==1)
- cout<<"◇◆◇抽籤中◇◆◇"<<endl;
- else
- cout<<"◆◇◆抽籤中◆◇◆"<<endl;
- cout<<food[rand()%5]<<"!"<<endl;
- _sleep;
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |