- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string food[]={"咖哩","義大利麵","壽司","漢堡","屎"};
- int eat;
- srand(time(NULL));
- cout<<"★☆★抽籤程式★☆★"<<endl;
- cout<<"今天晚餐\要吃什麼?"<<endl<<endl;
- system("pause");
- for(int i=0; i<=100; i++)
- {
- eat=rand()%5+0;
- if(i%2==0)
- {
- cout<<"★☆★抽籤程式★☆★"<<endl;
- }else
- {
- cout<<"☆★☆抽籤程式☆★☆"<<endl;
- }
- cout<<food[eat]<<endl;
- system("cls");
- }
- cout<<"今天晚餐\吃"<<food[eat]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |