- #include<iostream>
- #include<ctime>
- using namespace std;
- int main()
- {
- int r=1;
- re:
- int s[]={0,0,0,0};
- string h[]={"◆","★","▲","●"};
- srand(time(NULL));
- cout<<"★★★The Wetherby Racecourse★★★"<<endl;
- cout<<"-------------------------------------------------------------------------|Finish"<<endl;
- for(int i=0;i<=3;i++)
- cout<<h[i]<<endl;
- system("pause");
- while(true)
- {
- system("cls");
- int o=rand()%4;
- s[o]++;
- cout<<"★★★The Wetherby Racecourse★★★"<<endl;
- cout<<"-------------------------------------------------------------------------|Finish"<<endl;
- for(int i=0; i<4; i++)
- {
- for(int j=0; j<s[i]; j++)
- {
- cout<<" ";
- }
- cout<<h[i]<<endl;
- }
-
- if (s[o]==73)
- break;
- _sleep(50);
- }
- system("cls");
- cout<<"Race Finished"<<endl;
- cout<<"★★★The Wetherby Racecourse★★★"<<endl;
- cout<<"-------------------------------------------------------------------------|Finish"<<endl;
- for(int i=0; i<4; i++)
- {
- for(int j=0; j<s[i]; j++)
- {
- cout<<" ";
- }
- cout<<h[i]<<endl;
- }
-
- if(s[0]==73)
- cout<<"◆ Won The Race"<<endl;
- if(s[1]==73)
- cout<<"★ Won The Race"<<endl;
- if(s[2]==73)
- cout<<"▲ Won The Race"<<endl;
- if(s[3]==73)
- cout<<"● Won The Race"<<endl;
- r++;
- goto re;
-
- system("pause");
- return 0;
- }
複製代碼 |