- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[4]={"考試滿分","被車撞","踩到狗屎","撿到鈔票1000元"};
- int ball;
- srand(time(NULL));
- cout<<"*@*抽籤程式*@*"<<endl;
- cout<<"今天會遇到什麼事?"<<endl<<endl;
- system("pause");
- system("cls");
- for(int i=0;i<=150;i++)
- {
- ball=rand()%4;
- if(i%2==0)
- cout<<"*@*抽籤中*@*"<<endl;
- else
- cout<<"@*@抽籤中@*@"<<endl;
- cout<<name[ball]<<endl;
- system("cls");
- }
- cout<<"今天會"<<name[ball]<<"!!!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |