- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string food[]={"牛排","義大利麵","火鍋","生菜沙拉","焗烤","不吃"};
- srand(time(NULL));
- re:
- system("cls");
- cout<<" 抽籤程式 "<<endl;
- cout<<"今天晚餐\吃什麼?"<<endl<<endl;
- system("pause");
- system("pause");
- for(int i=1; i<=30; i++)
- {
- if(i%2==1)
- cout<<"-_- 抽籤中 -_-"<<endl;
- else
- cout<<"_-_ 抽籤中 _-_"<<endl;
- cout<<food[rand()%6]<<"!"<<endl;
- _sleep(100);
- system("cls");
- }
- cout<<"吃: "<<food[rand()%6]<<"!"<<endl<<endl;
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |