- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int t=1, j=0;
- re1:
- int a=0, b=0, c=0, d=0, r, k, m;
- system("cls");
- cout<<"﹩財源滾滾賽馬場 ﹩";
- cout<<" 第"<<t<<"局"<<endl;
- cout<<"=========================================================================| 終點"<<endl;
- cout<<"◢1◤"<<endl;
- cout<<"◢2◤"<<endl;
- cout<<"◢3◤"<<endl;
- cout<<"◢4◤"<<endl;
- cout<<"可用餘額"<<j<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
- cin>>k;
- if(k==1)
- {
- cout<<"買入: ";
- cin>>m;
- j+=m;
- goto re1;
- }
- system("pause");
- system("cls");
- srand(time(NULL));
- while(a!=75 && b!=75 && c!=75 && d!=75)
- {
- r=rand()%4;
- if(r==0)
- a++;
- else if(r==1)
- b++;
- else if(r==2)
- c++;
- else
- d++;
- cout<<"比賽進行中"<<endl;
- cout<<"=========================================================================| 終點"<<endl;
- for(int i=1; i<=a; i++)
- cout<<" ";
- cout<<"◢1◤"<<endl;
- for(int i=1; i<=b; i++)
- cout<<" ";
- cout<<"◢2◤"<<endl;
- for(int i=1; i<=c; i++)
- cout<<" ";
- cout<<"◢3◤"<<endl;
- for(int i=1; i<=d; i++)
- cout<<" ";
- cout<<"◢4◤"<<endl;
- system("cls");
- }
- cout<<"比賽結束";
- if(a==75)
- cout<<" 由◢1◤獲得勝利"<<endl;
- else if(b==75)
- cout<<" 由◢2◤獲得勝利"<<endl;
- else if(c==75)
- cout<<" 由◢3◤獲得勝利"<<endl;
- else
- cout<<" 由◢4◤獲得勝利"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- for(int i=1; i<=a; i++)
- cout<<" ";
- cout<<"◢1◤"<<endl;
- for(int i=1; i<=b; i++)
- cout<<" ";
- cout<<"◢2◤"<<endl;
- for(int i=1; i<=c; i++)
- cout<<" ";
- cout<<"◢3◤"<<endl;
- for(int i=1; i<=d; i++)
- cout<<" ";
- cout<<"◢4◤"<<endl;
- system("pause");
- t++;
- goto re1;
- system("pause");
- return 0;
- }
複製代碼 |