- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[5]={"林肯豪華餐\","貓屎","猴屎","雞屎","人屎"};
- int ball;
- srand(time(NULL));
- cout<<"☆★☆抽籤程式☆★☆"<<endl;
- cout<<"晚餐\吃什麼"<<endl;
- system("pause");
- for(int i=0;i<=200;i++)
- {
- ball=rand()%5;
- if(i%2==0)
- {
- cout<<"☆★☆抽籤中☆★☆"<<endl;
- }else
- {
- cout<<"★☆★抽籤中★☆★"<<endl;
- }
- cout<<name[ball]<<endl;
- system("cls");
- }
- cout<<"吃: "<<name[ball]<<"!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |