- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int ww = 0;
- cout<<"----遊樂設施挑戰死亡抽籤----"<<endl;
- cout<<"誰要挑戰呢";
- while(ww!=4)
- {
- ww+=1;
- _sleep(300);
- cout<<".";
- }
- cout<<endl;
- srand(time(NULL));
- string ch[] = {"老子","荀子","孔子","孟子"} ;
- for(int y=0;y<=99;y++)
- {
- if(y%2==0)
- {
- cout<<"-*-抽籤中-*-"<<endl;
- _sleep(60);
- }
- else
- {
- cout<<"*-*抽籤中*-*"<<endl;
- _sleep(60);
- }
- }
- cout<<"恭喜"<<ch[rand()%4]<<"被選中了"<<endl;
- cout<<"我們為他默哀"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |