- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- system("cls");
- int s[]={0,0,0,0};
- string h[]={"◆","★","▲","●"};
- srand(time(NULL));
- cout<<"「好事成雙」賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0;i<=3;i++)
- {
- cout<<h[i]<<endl;
- }
- cout<<"按enter開始 1.一般 2.快速"<<endl;
- int option;
- cin>>option;
-
- system("pause");
- while(true)
- {
- system("cls");
- int r=rand()%4;
-
- cout<<"比賽進行中"<<endl;
- cout<<"------------------------------------------------------------------------------------------------------------------| 終點"<<endl;
- if(option==1)
- {
- s[r]++;
- for(int j=0; j<=3; j++)
- {
- for(int i=0; i<=s[j]; i++)
- cout<<" ";
- cout<<h[j]<<endl;
- }
- if(s[r]==112)
- break;
- _sleep(50);
- }
- else if(option==2)
- {
- s[r]+=8;
- for(int j=0; j<=3; j++)
- {
- for(int i=0; i<=s[j]; i++)
- cout<<" ";
- cout<<h[j]<<endl;
- }
- if(s[r]>=112)
- break;
- _sleep(100);
- }
-
-
- }
- system("cls");
- cout<<"比賽結束"<<endl;
- cout<<"------------------------------------------------------------------------------------------------------------------| 終點"<<endl;
- for(int j=0; j<=3; j++)
- {
- for(int i=0; i<=s[j]; i++)
- cout<<" ";
- cout<<h[j]<<endl;
- }
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |