- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int eat;
- string food[4]={"牛排","珍奶","臭豆腐","炒飯"};
- cout<<"☆★☆抽籤程式☆★☆"<<endl;
- cout<<"今天晚餐\吃什麼?"<<endl;
- system("pause");
- srand(time(NULL));
- eat=rand()%4;
- for(int i=1; i<=30; i++)
- {
- if(i%2==1)
- cout<<"☆★☆抽籤中☆★☆"<<endl;
- else
- cout<<"★☆★抽籤中★☆★"<<endl;
- cout<<food[rand()%4]<<endl;
- _sleep(50);
- system("cls");
-
- }
-
- cout<<"吃"<<food[eat]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |