返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int e=1,balance=0,money=0;
  7.     re1:
  8.     int a=0,b=0,c=0,d=0,r,option,buyin,bet,winner;
  9.     system("cls");   
  10.     cout<<"$ 888賽馬場 第"<<e<<"局 $"<<endl;
  11.     cout<<"--------------------------------------------------------------------------│"<<endl;     
  12.     cout<<"◢1◤"<<endl;
  13.     cout<<"◢2◤"<<endl;
  14.     cout<<"◢3◤"<<endl;
  15.     cout<<"◢4◤"<<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.     }
  27.     else if(option==2)
  28.     {
  29.         if(balance==0)
  30.         {
  31.             cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
  32.             system("pause");
  33.             goto re1;              
  34.         }
  35.         cout<<"下注: ";
  36.         cin>>bet;
  37.         if(bet>balance)
  38.         {
  39.             cout<<"可用餘額不足! 請先買入!"<<endl<<endl;
  40.             system("pause");
  41.             goto re1;              
  42.         }
  43.         else
  44.         {
  45.             cout<<endl<<"(1)◢1◤ (2)◢2◤ (3)◢3◤ (4)◢4◤ 請選擇: ";
  46.             cin>>option;
  47.             cout<<"比賽即將開始..."<<endl<<endl;
  48.             system("pause");   
  49.         }
  50.     }
  51.     else if(option==3)
  52.     {
  53.         goto end;     
  54.     }
  55.     else
  56.     {
  57.         cout<<"輸入錯誤!"<<endl;
  58.         system("pause");
  59.         goto re1;     
  60.     }
  61.     system("cls");
  62.     srand(time(NULL));
  63.     while(a!=75 && b!=75 && c!=75 && d!=75)
  64.     {
  65.         r=rand()%4;
  66.         if(r==0)
  67.             a++;
  68.         else if(r==1)
  69.             b++;
  70.         else if(r==2)
  71.             c++;
  72.         else
  73.             d++;
  74.         cout<<"比賽進行中"<<endl;
  75.         cout<<"--------------------------------------------------------------------------│終點"<<endl;     
  76.         for(int i=1;i<=a;i++)
  77.             cout<<" ";
  78.         cout<<"◢1◤"<<endl;
  79.         for(int i=1;i<=b;i++)
  80.             cout<<" ";
  81.         cout<<"◢2◤"<<endl;
  82.         for(int i=1;i<=c;i++)
  83.             cout<<" ";
  84.         cout<<"◢3◤"<<endl;
  85.         for(int i=1;i<=d;i++)
  86.             cout<<" ";
  87.         cout<<"◢4◤"<<endl;
  88.         system("cls");                                   
  89.     }        
  90.     cout<<"比賽結束!由 ";
  91.     if(a==75)
  92.     {   
  93.         cout<<"◢1◤";
  94.         winner=1;
  95.     }
  96.     if(b==75)
  97.     {   
  98.         cout<<"◢2◤";
  99.         winner=2;
  100.     }
  101.     if(c==75)
  102.     {
  103.         cout<<"◢3◤";
  104.         winner=3;
  105.     }
  106.     if(d==75)
  107.     {
  108.         cout<<"◢4◤";
  109.         winner=4;
  110.     }
  111.     cout<<" 先馳得點"<<endl;   
  112.     cout<<"--------------------------------------------------------------------------│終點"<<endl;            
  113.     for(int i=1;i<=a;i++)
  114.         cout<<" ";
  115.     cout<<"◢1◤"<<endl;
  116.     for(int i=1;i<=b;i++)
  117.         cout<<" ";
  118.     cout<<"◢2◤"<<endl;
  119.     for(int i=1;i<=c;i++)
  120.         cout<<" ";
  121.     cout<<"◢3◤"<<endl;
  122.     for(int i=1;i<=d;i++)
  123.         cout<<" ";
  124.     cout<<"◢4◤"<<endl;
  125.     if(option==winner)
  126.     {
  127.         cout<<"贏了"<<bet*3<<"元"<<endl;
  128.         balance+=bet*3;           
  129.         money+=bet*3;
  130.     }
  131.     else
  132.     {
  133.         cout<<"損失"<<bet<<"元"<<endl;
  134.         balance-=bet;
  135.         money-=bet;   
  136.     }
  137.     system("pause");
  138.     e++;
  139.     goto re1;
  140.     end:
  141.     if(money==0)
  142.     {
  143.         cout<<"沒輸沒贏! 全身而退!"<<endl;   
  144.     }
  145.     else if(money>0)
  146.     {
  147.         cout<<"恭喜你! 這次總共贏了"<<money<<"元!"<<endl;
  148.     }
  149.     else
  150.     {
  151.         cout<<"不好意思! 讓你損失了"<<-money<<"元!"<<endl;
  152.     }
  153.     cout<<"謝謝光臨!下次再來!"<<endl;
  154.     system("pause");
  155.     return 0;
  156. }
複製代碼

TOP

返回列表