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