- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n=1,r;
- re:
- system("cls");
- int h[4]={0,0,0,0};
- srand(time(NULL));
- cout<<"賽馬場 第"<<n<<"局"<<endl;
- cout<<"-------------------------------------------------------------------------|終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- system("pause");
- while(true)
- {
- cout<<"比賽進行中"<<endl;
- cout<<"-------------------------------------------------------------------------|終點"<<endl;
- r=rand()%4;
- h[r]++;
- for(int i=1;i<=h[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int i=1;i<=h[1];i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int i=1;i<=h[2];i++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int i=1;i<=h[3];i++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
-
- if(h[r]==72)
- {
- break;
- }
- system("cls");
- }
- system("cls");
- cout<<"比賽結束!!!";
- if(r==0)
- cout<<"由 ◆ 先馳得點"<<endl;
- if(r==1)
- cout<<"由 ★ 先馳得點"<<endl;
- if(r==2)
- cout<<"由 ▲ 先馳得點"<<endl;
- if(r==3)
- cout<<"由 ● 先馳得點"<<endl;
- cout<<"-------------------------------------------------------------------------|終點"<<endl;
-
- for(int i=1;i<=h[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int i=1;i<=h[1];i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int i=1;i<=h[2];i++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int i=1;i<=h[3];i++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
- system("pause");
- n++;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |