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