- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- int n=1,money=0,total=0;
- re1:
- int a=0, b=0, c=0, d=0, r,option,winer,buying,bet;
- 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>>buying;
- money = money + buying; // 原始的餘額加上買入的籌碼
- 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
- {
- dog:
- cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
- cin>>option;
- if(option>4)
- {
- cout<<"你選錯了"<<endl;
- system("pause");
- goto dog;
- }
- cout<<"比賽即將開始..."<<endl<<endl;
- system("pause");
- }
-
- }else if(option==3)
- {
- goto end;
- }else
- {
- cout<<"輸入錯誤!!"<<endl;
- system("pause");
- goto re1;
- }
-
-
- system("cls");
- srand(time(NULL));
- while(a!=75 && b!=75 && c!=75 && d!=75)
- {
- r=rand()%4; //產生0~3之隨機亂數
- 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==75)
- {
- cout<<"◆";
- winer=1;
- }
- else if(b==75)
- {
- cout<<"★";
- winer=2;
- }
- else if(c==75)
- {
- cout<<"▲";
- winer=3;
- }
-
- else
- {
- cout<<"●";
- winer=4;
- }
- cout<<" 先馳得點!"<<endl;
- // 印出最後4匹馬的結果
- 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(winer==option)
- {
- money=money+bet*3;
- total=total+bet*3;
- }else
- {
- money=money-bet;
- total=total-bet;
- }
-
- system("pause");
-
- n++;
- goto re1;
- end:
- if(total==0)
- {
- cout<<"你竟然沒賠錢!!!!"<<endl;
- }else if(total>0)
- {
- cout<<"贏錢ㄟ,阿不就好棒棒"<<endl;
- }else
- {
- cout<<"那個白癡連賭博都贏不了啊"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |