返回列表 發帖

賽馬程式 (七)

本帖最後由 tonyh 於 2014-5-3 17:21 編輯

完成選項 (3)離開 的相對應程式碼
在離開時顯示戰果, 譬如:
"沒輸沒贏! 全身而退!"
"恭喜你! 這次總共贏了100元!"
"不好意思! 讓你損失了200元!"

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,balance=0;
  7.     re1:
  8.     int a=0,b=0,c=0,d=0,r,option,buyin,bet,winner,money=0;
  9.     system("cls");
  10.     cout<<"天觀馬場 第 "<<n<<" 局"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"▲"<<endl;
  15.     cout<<"●"<<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.     }else if(option==2)
  27.     {
  28.        if(balance==0)   
  29.       {
  30.          cout<<"可用餘額不足,請先買入!"<<endl<<endl;               
  31.          system("pause");
  32.          goto re1;               
  33.       }   
  34.        cout<<"下注: ";
  35.        cin>>bet;   
  36.        if(bet>balance)
  37.        {
  38.           cout<<"可用餘額不足,請先買入!"<<endl<<endl;               
  39.          system("pause");
  40.          goto re1;                                                
  41.        }else  
  42.        {
  43.         cout<<"(1) ◆ (2) ★ (3) ▲(4) ●請選擇: ";      
  44.            cin>>option;
  45.            cout<<"比賽即將開始..."<<endl<<endl;   
  46.        }         
  47.     }else if(option==3)
  48.     {
  49.      goto end;     
  50.     }else
  51.     {
  52.        cout<<"輸入錯誤!"<<endl<<endl;               
  53.          system("pause");
  54.          goto re1;                  
  55.     }
  56.     system("pause");
  57.     system("cls");
  58.     srand(time(NULL));
  59.     while(a!=75 && b!=75 && c!=75 && d!=75)
  60.     {
  61.         r=rand()%4;   
  62.         if(r==0)
  63.             a++;
  64.         else if(r==1)
  65.             b++;
  66.         else if(r==2)
  67.             c++;
  68.         else
  69.             d++;
  70.         cout<<"比賽進行中"<<endl;
  71.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  72.         for(int i=1; i<=a; i++)
  73.             cout<<" ";
  74.         cout<<"◆"<<endl;
  75.         for(int i=1; i<=b; i++)
  76.             cout<<" ";
  77.         cout<<"★"<<endl;
  78.         for(int i=1; i<=c; i++)
  79.             cout<<" ";
  80.         cout<<"▲"<<endl;
  81.         for(int i=1; i<=d; i++)
  82.             cout<<" ";
  83.         cout<<"●"<<endl;   
  84.         system("cls");      
  85.     }
  86.     cout<<"比賽結束! 由 ";
  87.     if(a==75)
  88.     {
  89.         cout<<"◆";

  90.         winner=1;
  91.     }
  92.     else if(b==75)
  93.     {
  94.         cout<<"★";
  95.         winner=2;
  96.      }   
  97.     else if(c==75)
  98.     {
  99.         cout<<"▲";
  100.         winner=3;
  101.     }
  102.     else
  103.         cout<<"●";
  104.         winner=4;
  105.     cout<<" 先馳得點!"<<endl;
  106.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  107.     for(int i=1; i<=a; i++)
  108.         cout<<" ";
  109.     cout<<"◆"<<endl;
  110.     for(int i=1; i<=b; i++)
  111.         cout<<" ";
  112.     cout<<"★"<<endl;
  113.     for(int i=1; i<=c; i++)
  114.         cout<<" ";
  115.     cout<<"▲"<<endl;
  116.     for(int i=1; i<=d; i++)
  117.         cout<<" ";
  118.     cout<<"●"<<endl;
  119.     if(option==winner)
  120.     {
  121.      cout<<endl<<"贏了"<<bet*3<<"元"<<endl;                 
  122.      balance+=bet*3;
  123.      money+=bet*3;                 
  124.     }else
  125.     {
  126.       cout<<"輸了"<<bet<<"元"<<endl;
  127.       balance-=bet;   
  128.     }
  129.     system("pause");
  130.     n++;
  131.     goto re1;
  132.     end:
  133.     if(money=0)
  134.     {
  135.       cout<<"沒輸沒贏,全身而退!"<<endl;
  136.     }else if(money<0)
  137.      {
  138.           cout<<"對不起,令您輸了"<<-money<<"元"<<endl;
  139.      }else
  140.      {
  141.      cout<<"這次總共贏了"<<money<<"元"<<endl;
  142.      }
  143.      cout<<"謝謝光臨!下次再來!"<<endl;   
  144.     system("pause");
  145.     return 0;   
  146. }
複製代碼

TOP

  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

  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

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

TOP

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

TOP

返回列表