- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string f[]={"漢堡","牛排","羊肉爐","意麵","便當"};
- srand(time(NULL));
- re:
- system("cls");
- cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
- cout<<"今天晚餐\吃什麼?"<<endl<<endl;
- system("pause");
- for(int i=1; i<=30; i++)
- {
- if(i%2==1)
- cout<<"★☆★ 抽籤中 ★☆★"<<endl;
- else
- cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
- cout<<f[rand()%5]<<"!"<<endl;
- _sleep(50);
- system("cls");
- }
- cout<<"吃 "<<f[rand()%5]<<"!"<<endl<<endl;
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |