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