返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,balance=0;
  7.     re1:
  8.     int a=0,b=0,c=0,d=0,r,option,buyin,bet,winner,money=0;
  9.     system("cls");
  10.     cout<<"天觀馬場 第 "<<n<<" 局"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"▲"<<endl;
  15.     cout<<"●"<<endl;
  16.     cout<<endl;
  17.     cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  18.     cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
  19.     cin>>option;
  20.     if(option==1)
  21.     {
  22.     cout<<"買入: ";            
  23.     cin>>buyin;
  24.     balance+=buyin;
  25.     goto re1;                        
  26.     }else if(option==2)
  27.     {
  28.        if(balance==0)   
  29.       {
  30.          cout<<"可用餘額不足,請先買入!"<<endl<<endl;               
  31.          system("pause");
  32.          goto re1;               
  33.       }   
  34.        cout<<"下注: ";
  35.        cin>>bet;   
  36.        if(bet>balance)
  37.        {
  38.           cout<<"可用餘額不足,請先買入!"<<endl<<endl;               
  39.          system("pause");
  40.          goto re1;                                                
  41.        }else  
  42.        {
  43.         cout<<"(1) ◆ (2) ★ (3) ▲(4) ●請選擇: ";      
  44.            cin>>option;
  45.            cout<<"比賽即將開始..."<<endl<<endl;   
  46.        }         
  47.     }else if(option==3)
  48.     {
  49.      goto end;     
  50.     }else
  51.     {
  52.        cout<<"輸入錯誤!"<<endl<<endl;               
  53.          system("pause");
  54.          goto re1;                  
  55.     }
  56.     system("pause");
  57.     system("cls");
  58.     srand(time(NULL));
  59.     while(a!=75 && b!=75 && c!=75 && d!=75)
  60.     {
  61.         r=rand()%4;   
  62.         if(r==0)
  63.             a++;
  64.         else if(r==1)
  65.             b++;
  66.         else if(r==2)
  67.             c++;
  68.         else
  69.             d++;
  70.         cout<<"比賽進行中"<<endl;
  71.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  72.         for(int i=1; i<=a; i++)
  73.             cout<<" ";
  74.         cout<<"◆"<<endl;
  75.         for(int i=1; i<=b; i++)
  76.             cout<<" ";
  77.         cout<<"★"<<endl;
  78.         for(int i=1; i<=c; i++)
  79.             cout<<" ";
  80.         cout<<"▲"<<endl;
  81.         for(int i=1; i<=d; i++)
  82.             cout<<" ";
  83.         cout<<"●"<<endl;   
  84.         system("cls");      
  85.     }
  86.     cout<<"比賽結束! 由 ";
  87.     if(a==75)
  88.     {
  89.         cout<<"◆";

  90.         winner=1;
  91.     }
  92.     else if(b==75)
  93.     {
  94.         cout<<"★";
  95.         winner=2;
  96.      }   
  97.     else if(c==75)
  98.     {
  99.         cout<<"▲";
  100.         winner=3;
  101.     }
  102.     else
  103.         cout<<"●";
  104.         winner=4;
  105.     cout<<" 先馳得點!"<<endl;
  106.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  107.     for(int i=1; i<=a; i++)
  108.         cout<<" ";
  109.     cout<<"◆"<<endl;
  110.     for(int i=1; i<=b; i++)
  111.         cout<<" ";
  112.     cout<<"★"<<endl;
  113.     for(int i=1; i<=c; i++)
  114.         cout<<" ";
  115.     cout<<"▲"<<endl;
  116.     for(int i=1; i<=d; i++)
  117.         cout<<" ";
  118.     cout<<"●"<<endl;
  119.     if(option==winner)
  120.     {
  121.      cout<<endl<<"贏了"<<bet*3<<"元"<<endl;                 
  122.      balance+=bet*3;
  123.      money+=bet*3;                 
  124.     }else
  125.     {
  126.       cout<<"輸了"<<bet<<"元"<<endl;
  127.       balance-=bet;   
  128.     }
  129.     system("pause");
  130.     n++;
  131.     goto re1;
  132.     end:
  133.     if(money=0)
  134.     {
  135.       cout<<"沒輸沒贏,全身而退!"<<endl;
  136.     }else if(money<0)
  137.      {
  138.           cout<<"對不起,令您輸了"<<-money<<"元"<<endl;
  139.      }else
  140.      {
  141.      cout<<"這次總共贏了"<<money<<"元"<<endl;
  142.      }
  143.      cout<<"謝謝光臨!下次再來!"<<endl;   
  144.     system("pause");
  145.     return 0;   
  146. }
複製代碼

TOP

返回列表