- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- int e=1, balance=0, money=0;
- re1:
- int a=0, b=0, c=0, d=0, r, f, option, buyin, bet;
- system("cls");
- cout<<"$賺大錢賽馬場$ 第"<<e<<"局"<<endl;
- cout<<"------------------------------------------------------------------------│終點"<<endl;
- cout<<"◢ 1▋"<<endl;
- cout<<"◢ 2▋"<<endl;
- cout<<"◢ 3▋"<<endl;
- cout<<"◢ 4▋"<<endl;
- cout<<endl<<"可用餘額:"<<balance<<"元!"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
- cin>>option;
- if(option==1)
- {
- cout<<"買入: ";
- cin>>buyin;
- balance+=buyin;
- goto re1;
- }
- else if(option==2)
- {
- if(balance==0)
- {
- cout<<"可用餘額不足,請先買入!"<<endl;
- system("pause");
- goto re1;
- }
- cout<<"下注: ";
- cin>>bet;
- if(bet>balance)
- {
- cout<<"可用餘額不足,請先買入!"<<endl;
- system("pause");
- goto re1;
- }
- else
- {
- cout<<"(1)◢ 1▋ (2)◢ 2▋ (3)◢ 3▋ (4)◢ 4▋ 請選擇:";
- cin>>option;
- cout<<"比賽即將開始..."<<endl;
- system("pause");
- }
- }
- else if(option==3)
- {
- goto end;
- }
- else
- {
- cout<<"輸入錯誤!"<<endl;
- }
- system("cls");
- srand(time(NULL));
- while(a!=73 && b!=73 && c!=73 && d!=73)
- {
- 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<<"比賽結束! ";
- cout<<"由";
- if(a>b && a>c && a>d)
- {
- cout<<"◢ 1▋";
- f=1;
- }
- if(b>a && b>c && b>d)
- {
- cout<<"◢ 2▋";
- f=2;
- }
- if(c>a && c>b && c>d)
- {
- cout<<"◢ 3▋";
- f=3;
- }
- if(d>a && d>b && d>c)
- {
- cout<<"◢ 4▋";
- f=4;
- }
- 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;
-
- if(option==f)
- {
- cout<<"贏得"<<bet*3<<"元"<<endl;
- balance+=bet*3;
- money+=bet*3;
- }
- else
- {
- cout<<"損失"<<bet<<"元"<<endl;
- balance-=bet;
- money-=bet;
- }
- system("pause");
- e++;
- goto re1;
- end:
- if(money==0)
- {
- cout<<"沒輸沒贏! 全身而退!"<<endl;
- }
- else if(money>0)
- {
- cout<<"恭喜你! 這次總共贏了"<<money<<"元!"<<endl;
- }
- else
- {
- cout<<"不好意思! 損失了"<<-money<<"元!"<<endl;
- }
- cout<<"謝謝光臨! 下次再來!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |