返回列表 發帖
  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 option;        
  10.         int buy, bet, player;
  11.         int earn;

  12.     re:
  13.     system("cls");
  14.     srand(time(NULL));
  15.     int s[]={0,0,0,0};        
  16.     string p[]={"◆","★","▲","●"};      
  17.     int r=0;
  18.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  19.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  20.     for(int i=0; i<4; i++)
  21.         cout<<p[i]<<endl;      
  22.    
  23.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  24.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  25.     cin>>option;
  26.    
  27.         if(option==1){
  28.            
  29.             cout<<"買入: ";
  30.             cin>>buy;
  31.             if(buy<=0){
  32.                         cout<<"輸入錯誤!";
  33.             _sleep(1500);      
  34.             goto re;
  35.                 }
  36.             balance=balance+buy;      
  37.             goto re;
  38.         }
  39.       
  40.     else if(option==2)
  41.     {
  42.         cout<<"下注: ";
  43.         cin>>bet;
  44.         if(bet<=0)
  45.         {
  46.                
  47.             cout<<"輸入錯誤!";
  48.             _sleep(1500);
  49.             goto re;     
  50.         }
  51.         if(bet>balance)
  52.         {
  53.                
  54.             cout<<"可用餘額不足,請先買入!";
  55.             _sleep(1500);
  56.             goto re;     
  57.         }
  58.       
  59.         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  60.         cin>>player;
  61.         cout<<"比賽即將開始..."<<endl<<endl;         
  62.     }
  63.    
  64.     else if(option==3)
  65.     {
  66.         goto end;         
  67.     }
  68.     else
  69.     {
  70.         cout<<"輸入錯誤!";
  71.         _sleep(1500);
  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(20);
  89.         system("cls");
  90.     }
  91.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  92.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  93.     for(int i=0; i<4; i++)
  94.     {
  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.     balance=balance-bet*3;
  103.     cout<<"贏了"<<bet*3<<"元"<<endl;
  104.     earn=earn+bet*3;
  105. }
  106.     else{
  107.     cout<<"輸了"<<bet<<"元"<<endl;
  108.     earn=earn-bet;
  109.     }   
  110.     system("pause");
  111.     round++;        
  112.     goto re;
  113.    
  114.     end:
  115.        if(earn>0)
  116.        cout<<"恭喜賺"<<earn<<"元"<<endl;
  117.        else if(earn<0)
  118.        cout<<"可憐賠"<<-earn<<"元"<<endl;
  119.        else
  120.        cout<<"不賺不賠,好玩~"<<endl;
  121.     cout<<endl<<"不玩了? 88~"<<endl;
  122.     _sleep(1500);
  123.    
  124.     return 0;
  125. }
複製代碼

TOP

返回列表