- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- int n=1,money=0,winner,winmoney=0;
- re1:
- int a=0, b=0, c=0, d=0, r,option,bet,buyin;
- system("cls");
- cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl<<endl;
- cout<<"可用餘額: "<< money<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
- cin>>option;
- if(option==1)
- {
-
- cout<<"買入:";
- cin>>buyin;
- money = money + buyin;
- goto re1;
- }else if(option==2)
- {
- if(money==0)
- {
- cout<<"可用餘額不足!請先買入!"<<endl;
- system("pause");
- goto re1;
- }
-
- cout<<"下注:";
- cin>> bet;
- if(bet>money)
- {
- cout<<"可用餘額不足!請先買入!"<<endl;
- system("pause");
- goto re1;
- }else
- {
- cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
- cin>>option;
- cout<<"比賽即將開始..."<<endl<<endl;
- system("pause");
- }
-
- }else if(option==3)
- {
- goto end;
- }else
- {
- cout<<"輸入錯誤!!"<<endl;
- system("pause");
- goto re1;
- }
-
-
- system("pause");
- system("cls");
- srand(time(NULL));
- while(a!=70 && b!=70 && c!=70 && d!=70)
- {
- 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<<"◆"<<endl;
-
- for(int i=1; i<=b; i++)
- cout<<" ";
- cout<<"★"<<endl;
-
- for(int i=1; i<=c; i++)
- cout<<" ";
- cout<<"▲"<<endl;
-
- for(int i=1; i<=d; i++)
- cout<<" ";
- cout<<"●"<<endl;
- system("cls");
- }
-
- cout<<"比賽結束! 由 ";
- if(a==70)
- {
- cout<<"◆";
- winner=1;
- }
- else if(b==70)
- {
- cout<<"★";
- winner=2;
- }
- else if(c==70)
- {
- cout<<"▲";
- winner=3;
- }
- else
- {
- cout<<"●";
- winner=4;
- }
- cout<<" 先馳得點!"<<endl;
-
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- for(int i=1; i<=a; i++)
- cout<<" ";
- cout<<"◆"<<endl;
-
- for(int i=1; i<=b; i++)
- cout<<" ";
- cout<<"★"<<endl;
-
- for(int i=1; i<=c; i++)
- cout<<" ";
- cout<<"▲"<<endl;
-
- for(int i=1; i<=d; i++)
- cout<<" ";
- cout<<"●"<<endl;
- if(option==winner)
- {
- cout<<"贏了"<<bet*3<<"元!"<<endl;
- money+=bet*3;
- winmoney+=bet*3;
- }
- else{
- cout<<"損失"<<bet<<"元!"<<endl;
- money-=bet;
- winmoney-=bet;
- }
-
- system("pause");
-
- n++;
- goto re1;
- end:
- if(winmoney==0)
- {
- cout<<"沒輸沒贏,全身而退!"<<endl;
- }
- else if(winmoney>0)
- {
- cout<<"恭喜你!這次總共贏了"<<winmoney<<"元"<<endl;
- }
- else
- {
- cout<<"不好意?,讓您損失了"<<winmoney<<"元"<<endl;
- }
- cout<<"謝謝光臨!下次再來!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |