- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int dinner;
- cout<<"***抽籤程式***"<<endl;
- cout<<"今天晚餐\吃甚麼?"<<endl;
- string name[3]={"牛排","咖哩飯","義大利麵"};
- system("pause");
- for(int i=1; i<=30;i++)
- {
- if(i%2==1)
- cout<<"*%*抽籤中*%*"<<endl;
- else
- cout<<"%*%抽籤中%*%"<<endl;
- cout<<name[rand()%3]<<"!"<<endl;
- _sleep(50);
- system("cls");
- }
- dinner=rand()%3+1;
- cout<<"吃: "<<name[dinner-1]<<"!"<<endl;
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |