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

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

TOP

返回列表