返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int n=1,money=0,total=0;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r,option,winer,buying,bet;
  10.     system("cls");
  11.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl<<endl;
  17.     cout<<"可用餘額: "<< money<<"元"<<endl<<endl;
  18.     cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
  19.     cin>>option;
  20.     if(option==1)  //選擇買入多少籌碼
  21.     {
  22.       
  23.        cout<<"買入:";
  24.        cin>>buying;
  25.        money = money + buying; // 原始的餘額加上買入的籌碼
  26.        goto re1;
  27.     }else if(option==2)
  28.     {
  29.        if(money==0)   //一開始就沒有餘額
  30.        {
  31.            cout<<"可用餘額不足!請先買入!"<<endl;
  32.            system("pause");
  33.            goto re1;
  34.        }
  35.       
  36.      
  37.         cout<<"下注:";
  38.         cin>> bet;
  39.         if(bet>money)   //餘額< 下注金額
  40.         {
  41.            cout<<"可用餘額不足!請先買入!"<<endl;
  42.            system("pause");
  43.            goto re1;
  44.         }else
  45.         {
  46.              dog:
  47.              cout<<"(1)◆(2)★(3)▲(4)● 請選擇: "<<endl;
  48.              cin>>option;
  49.              if(option>4)
  50.              {
  51.                          cout<<"你選錯了"<<endl;
  52.                           system("pause");  
  53.                           goto dog;
  54.              }
  55.             cout<<"比賽即將開始..."<<endl<<endl;
  56.             system("pause");   
  57.         }
  58.         
  59.     }else if(option==3)
  60.     {
  61.           goto end;
  62.     }else
  63.     {
  64.          cout<<"輸入錯誤!!"<<endl;
  65.           system("pause");
  66.          goto re1;
  67.     }
  68.    
  69.    
  70.     system("cls");
  71.     srand(time(NULL));
  72.     while(a!=75 && b!=75 && c!=75 && d!=75)
  73.     {
  74.         r=rand()%4;   //產生0~3之隨機亂數
  75.         if(r==0)
  76.             a++;
  77.         else if(r==1)
  78.             b++;
  79.         else if(r==2)
  80.             c++;
  81.         else
  82.             d++;
  83.         cout<<"比賽進行中"<<endl;
  84.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  85.         for(int i=1; i<=a; i++)
  86.             cout<<" ";
  87.         cout<<"◆"<<endl;
  88.         
  89.         for(int i=1; i<=b; i++)
  90.             cout<<" ";
  91.         cout<<"★"<<endl;
  92.         
  93.         for(int i=1; i<=c; i++)
  94.             cout<<" ";
  95.         cout<<"▲"<<endl;
  96.         
  97.         for(int i=1; i<=d; i++)
  98.             cout<<" ";
  99.         cout<<"●"<<endl;   
  100.         system("cls");      
  101.     }
  102.     // 比賽結束時 第一名的馬
  103.     cout<<"比賽結束! 由 ";
  104.     if(a==75)
  105.     {
  106.          cout<<"◆";
  107.          winer=1;
  108.     }   
  109.     else if(b==75)
  110.     {
  111.          cout<<"★";
  112.          winer=2;
  113.     }
  114.     else if(c==75)
  115.     {
  116.          cout<<"▲";
  117.          winer=3;
  118.     }
  119.         
  120.     else
  121.     {
  122.          cout<<"●";
  123.          winer=4;
  124.     }

  125.     cout<<" 先馳得點!"<<endl;
  126.     // 印出最後4匹馬的結果
  127.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  128.     for(int i=1; i<=a; i++)
  129.         cout<<" ";
  130.     cout<<"◆"<<endl;
  131.    
  132.     for(int i=1; i<=b; i++)
  133.         cout<<" ";
  134.     cout<<"★"<<endl;
  135.    
  136.     for(int i=1; i<=c; i++)
  137.         cout<<" ";
  138.     cout<<"▲"<<endl;
  139.    
  140.     for(int i=1; i<=d; i++)
  141.         cout<<" ";
  142.     cout<<"●"<<endl;
  143.      if(winer==option)
  144.     {
  145.                      money=money+bet*3;
  146.                      total=total+bet*3;
  147.     }else
  148.     {
  149.                     money=money-bet;
  150.                     total=total-bet;
  151.     }
  152.    
  153.     system("pause");
  154.    
  155.     n++;
  156.     goto re1;
  157.     end:
  158.     if(total==0)
  159.     {
  160.                 cout<<"你竟然沒賠錢!!!!"<<endl;
  161.     }else if(total>0)
  162.     {
  163.                 cout<<"贏錢ㄟ,阿不就好棒棒"<<endl;
  164.     }else
  165.     {
  166.          cout<<"那個白癡連賭博都贏不了啊"<<endl;
  167.     }   
  168.     system("pause");
  169.     return 0;   
  170. }
複製代碼

TOP

返回列表