- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[5]={"漢堡","牛排","意麵","炒飯","大便"};
- int a;
- srand(time(NULL));
- cout<<"*-*-*-*-*-*抽籤程式*-*-*-*-*-*"<<endl;
- cout<<"今天晚餐\吃甚麼?"<<endl<<endl;
- system("pause");
- system("cls");
- for(int i=0; i<=15; i++)
- {
- a=rand()%5;
- if(i%2==0)
- cout<<"*-*-*-*-*-*抽籤程式*-*-*-*-*-*"<<endl;
- else
- cout<<"*-*-*抽籤中*-*-*"<<endl;
- cout<<name[a]<<endl;
- system("cls");
- }
- cout<<"吃: "<<name[a]<<"!!!!!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |