- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- cout<<"★☆★抽籤程式★☆★"<<endl<<endl;
- cout<<"今天吃啥?"<<endl<<endl;
- string food[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(50);
- system("cls");
- }
- cout<<"今天"<<food[rand()%5]<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |