返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int round=1;        
  8.     int balance=0;        
  9.     int bet=0;
  10.         int option;        
  11.     int buy;
  12.     int player;
  13.     int h;
  14.    
  15.     re:
  16.     system("cls");
  17.     srand(time(NULL));
  18.    
  19.     int s[]={0,0,0,0};
  20.     string p[]={"◆","★","▲","●"};
  21.     int r=0;
  22.     cout<<"「好事成雙」賽馬場"<<"第"<<round<<"場"<<endl;
  23.     cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  24.     for(int i=0; i<4; i++)
  25.         cout<<p[i]<<endl;
  26.         
  27.     cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  28.     cout<<"(1)儲值 (2)下注 (3)離開 請選擇: ";   
  29.     cin>>option;
  30.         if(option==1)
  31.         {
  32.                 cout<<"你要儲值多少錢:";      
  33.                 cin>>buy;
  34.                 if(buy<0)
  35.                 {
  36.                     cout<<"輸入錯誤";
  37.                     _sleep(1500);
  38.                         goto re;
  39.                 }         
  40.                 balance=balance+buy;
  41.                 h=h+buy;
  42.                 goto re;
  43.         }
  44.         else if(option==2)
  45.         {
  46.                 cout<<"你要下注多少錢:";      
  47.                 cin>>bet;
  48.                 if(bet<0)
  49.                 {
  50.                     cout<<"輸入錯誤";
  51.                     _sleep(1500);
  52.                         goto re;
  53.                 }
  54.                 if(bet>balance)
  55.                 {
  56.                     cout<<"可用餘額不足,請先買入!";
  57.                     _sleep(1500);
  58.                         goto re;
  59.                 }
  60.                
  61.                 cout<<"(1)◆(2)★(3)▲(4)● 請選擇: ";
  62.                 cin>>player;
  63.                 cout<<"比賽即將開始....."<<endl<<endl;                  
  64.                
  65.         }
  66.         else if(option==3)
  67.         {
  68.                 goto end;
  69.         }
  70.         else
  71.         {
  72.                 goto re;
  73.         }

  74.     system("pause");
  75.     system("cls");
  76.     while(s[r]<=73)
  77.     {
  78.         r=rand()%4;  
  79.         s[r]++;
  80.         cout<<"比賽進行中"<<endl;
  81.         cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  82.         for(int i=0; i<4; i++)
  83.         {
  84.             for(int j=0; j<s[i]; j++)
  85.                 cout<<" ";
  86.             cout<<p[i]<<endl;
  87.         }
  88.         _sleep(50);
  89.         system("cls");
  90.     }
  91.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  92.     cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  93.     for(int i=0; i<4; i++)
  94.     {
  95.         for(int j=0; j<s[i]; j++)
  96.             cout<<" ";
  97.         cout<<p[i]<<endl;
  98.     }
  99.     cout<<endl;
  100.     if(player-1==r)
  101.     {
  102.             balance=balance+bet*3;
  103.             cout<<"贏了"<<bet*3<<"元";
  104.         }
  105.         else
  106.     {
  107.             balance=balance-bet;
  108.             cout<<"輸了"<<bet<<"元";
  109.         }
  110.     system("pause");
  111.     round++;
  112.     goto re;
  113.    
  114.     end:
  115.             cout<<"88"<<endl;
  116.             _sleep(1500);
  117.             if(balance==h){
  118.                     cout<<"沒輸沒贏!全身而退!"<<endl;
  119.                     _sleep(1500);
  120.             }      
  121.             else if(balance>h)
  122.                         {      
  123.                             cout<<"恭喜你!這次總共贏了"<<balance-h<<"元!"<<endl;
  124.                             _sleep(1500);
  125.                     }         
  126.                     else if(balance<h)
  127.                         {      
  128.                             cout<<"不好意思!讓你損失了"<<h-balance<<"元!"<<endl;
  129.                             _sleep(1500);
  130.                         }
  131.                 cout<<"歡迎光臨,下次再來 !"<<endl;
  132.                 _sleep(1500);                       
  133.         goto re;               
  134.     return 0;
  135. }
複製代碼

TOP

返回列表