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

TOP

返回列表