返回列表 發帖

[作業] 賽馬程式 (四)

本帖最後由 tonyh 於 2013-11-9 14:31 編輯

加入首頁選單, 使用者介面如下:
可用餘額: 0 元
(1)買入  (2)下注  (3)離開  請選擇: 1
買入: 200


在使用者輸入數值後, 畫面更新如下:
可用餘額: 200 元
(1)買入  (2)下注  (3)離開  請選擇:
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0;
  7.     int buyin,option,winner;
  8.     re1:
  9.     int a=0,b=0,c=0,d=0,r;
  10.     system("cls");   
  11.     cout<<"$ 財源滾滾賽馬場 $"<<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;   //i+=2  i=i+2
  25.         goto re1;
  26.     }
  27.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while((a!=70)&&(b!=70)&&(c!=70)&&(d!=70))
  31.     {
  32.         r=rand()%4;    //產生0~3之隨機亂數
  33.         if(r==0)
  34.             a++;
  35.         if(r==1)
  36.             b++;
  37.         if(r==2)
  38.             c++;
  39.         if(r==3)
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"---------------------------------------------------------------------|終點|"<<endl;
  43.         for(int i=1;i<=a;i++)
  44.             cout<<" ";
  45.         cout<<"◥1◣"<<endl;
  46.         for(int i=1;i<=b;i++)
  47.             cout<<" ";
  48.         cout<<"◥2◣"<<endl;
  49.         for(int i=1;i<=c;i++)
  50.             cout<<" ";
  51.         cout<<"◥3◣"<<endl;
  52.         for(int i=1;i<=d;i++)
  53.             cout<<" ";
  54.         cout<<"◥4◣"<<endl;
  55.         system("cls");
  56.     }
  57.         if(a>b && a>c && a>d)
  58.             winner=1;
  59.         else if(b>a && b>c && b>d)
  60.              winner=2;
  61.         else if(c>a && c>b && c>d)
  62.              winner=3;
  63.         else
  64.             winner=4;
  65.         cout<<"比賽結束! 由 "<<winner<<" 號選手先馳得點!"<<endl;
  66.         cout<<"---------------------------------------------------------------------|終點|"<<endl;
  67.         for(int i=1;i<=a;i++)
  68.             cout<<" ";
  69.         cout<<"◥1◣"<<endl;
  70.         for(int i=1;i<=b;i++)
  71.             cout<<" ";
  72.         cout<<"◥2◣"<<endl;
  73.         for(int i=1;i<=c;i++)
  74.             cout<<" ";
  75.         cout<<"◥3◣"<<endl;
  76.         for(int i=1;i<=d;i++)
  77.             cout<<" ";
  78.         cout<<"◥4◣"<<endl;  
  79.     system("pause");   
  80.     return 0;
  81. }
複製代碼

本帖最後由 林以諾 於 2013-11-9 14:35 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   system("cls");
  7.   int balance=0;
  8.   int winner,option,buying;
  9.   int a=0,b=0,c=0,d=0,r;
  10.   re1:
  11.   cout<<"『以諾帥哥』賽馬場!!"<<endl;
  12.   cout<<"-----------------------------------------------------------|終點"<<endl;
  13.   cout<<"◥1◣"<<endl;
  14.   cout<<"◥2◣"<<endl;
  15.   cout<<"◥3◣"<<endl;
  16.   cout<<"◥4◣"<<endl;
  17.   cout<<"可用餘額: "<<balance<<"元"<<endl;
  18.   cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  19.   srand(time(NULL));
  20.   cin>>option;
  21.   if(option==1)
  22.   {
  23.                cout<<"買入:";
  24.                cin>>buying;
  25.                balance+=buying;
  26.                goto re1;  
  27.                }
  28.   while((a!=60)&&(b!=60)&&(c!=60)&&(d!=60))
  29.   {
  30.              r=rand()%4;
  31.              if(r==0)
  32.               a++;     
  33.              else if(r==1)
  34.               b++;   
  35.              else if(r==2)
  36.               c++;   
  37.              else
  38.               d++;   
  39.              cout<<"比賽進行中....";
  40.              cout<<endl<<"-----------------------------------------------------------|終點"<<endl;
  41.                for(int i=1;i<=a;i++)
  42.                cout<<" ";
  43.                cout<<"◥1◣"<<endl;     
  44.                for(int i=1;i<=b;i++)
  45.                cout<<" ";
  46.                cout<<"◥2◣"<<endl;
  47.                for(int i=1;i<=c;i++)
  48.                cout<<" ";
  49.                cout<<"◥3◣"<<endl;     
  50.                for(int i=1;i<=d;i++)
  51.                cout<<" ";
  52.                cout<<"◥4◣"<<endl;
  53.                system("cls");                             
  54.                                            }
  55.                if(a>b&&a>c&&a>d)
  56.                winner=1;
  57.                else if(b>a&&b>c&&b>d)
  58.                winner=2;
  59.                else if(c>a&&c>b&&c>d)
  60.                winner=3;
  61.                else
  62.                winner=4;
  63.                cout<<"比賽結束!由"<<winner<<"號選手獲得勝利"<<endl;
  64.                cout<<endl<<"-----------------------------------------------------------|終點"<<endl;
  65.                for(int i=1;i<=a;i++)
  66.                cout<<" ";
  67.                cout<<"◥1◣"<<endl;     
  68.                for(int i=1;i<=b;i++)
  69.                cout<<" ";
  70.                cout<<"◥2◣"<<endl;
  71.                for(int i=1;i<=c;i++)
  72.                cout<<" ";
  73.                cout<<"◥3◣"<<endl;     
  74.                for(int i=1;i<=d;i++)
  75.                cout<<" ";
  76.                cout<<"◥4◣"<<endl;                                       
  77.   system("pause");
  78.   return 0;  
  79. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0, n=1, money=0;
  7.     int option, buyin, bet, winner;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r;
  10.     system("cls");
  11.     cout<<"「好事雙成」賽馬場 第"<<n<<"局"<<endl;
  12.     cout<<"---------------------------------------------------------|終點"<<endl;
  13.     cout<<"◥1◣"<<endl;
  14.     cout<<"◥2◣"<<endl;
  15.     cout<<"◥3◣"<<endl;
  16.     cout<<"◥4◣"<<endl;
  17.     re2:
  18.     cout<<endl<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  19.     cout<<"(1)買入(2)下注(3)離開 請選擇: ";
  20.     cin>>option;
  21.     if(option==1)
  22.     {
  23.         cout<<"買入: ";
  24.         cin>>buyin;
  25.         balance+=buyin;
  26.         goto re1;
  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.         }else
  43.         {
  44.              cout<<endl<<"(1)◥1◣(2)◥2◣(3)◥3◣(4)◥4◣請選擇: ";
  45.              cin>>option;
  46.              cout<<"比賽即將開始!"<<endl<<endl;
  47.              system("pause");
  48.         }
  49.     }else if(option==3)
  50.     {
  51.         cout<<"輸入錯誤!"<<endl<<endl;
  52.         system("pause");
  53.         goto re1;
  54.     }
  55.     srand(time(NULL));
  56.     while((a!=60)&&(b!=60)&&(c!=60)&&(d!=60))
  57.     {
  58.              r=rand()%4;
  59.              if(r==0)
  60.                a++;     
  61.              else if(r==1)
  62.                b++;   
  63.              else if(r==2)
  64.                c++;   
  65.              else
  66.                d++;   
  67.              cout<<"比賽進行中...";
  68.              cout<<endl<<"---------------------------------------------------------|終點"<<endl;
  69.                for(int i=1;i<=a;i++)
  70.                  cout<<" ";
  71.                cout<<"◥1◣"<<endl;     
  72.                for(int i=1;i<=b;i++)
  73.                  cout<<" ";
  74.                cout<<"◥2◣"<<endl;
  75.                for(int i=1;i<=c;i++)
  76.                  cout<<" ";
  77.                cout<<"◥3◣"<<endl;     
  78.                for(int i=1;i<=d;i++)
  79.                  cout<<" ";
  80.                cout<<"◥4◣"<<endl;
  81.                system("cls");                           
  82.          }
  83.                if(a>b&&a>c&&a>d)
  84.                  winner=1;
  85.                else if(b>a&&b>c&&b>d)
  86.                  winner=2;
  87.                else if(c>a&&c>b&&c>d)
  88.                  winner=3;
  89.                else
  90.                  winner=4;
  91.                  
  92.                cout<<"比賽結束!"<<endl;
  93.                cout<<"由"<<winner<<"號選手拿到勝利----------------------------------------|終點"<<endl;
  94.                for(int i=1;i<=a;i++)
  95.                  cout<<" ";
  96.                cout<<"◥1◣"<<endl;     
  97.                for(int i=1;i<=b;i++)
  98.                  cout<<" ";
  99.                cout<<"◥2◣"<<endl;
  100.                for(int i=1;i<=c;i++)
  101.                  cout<<" ";
  102.                cout<<"◥3◣"<<endl;     
  103.                for(int i=1;i<=d;i++)
  104.                  cout<<" ";
  105.                cout<<"◥4◣"<<endl;                                       
  106.     system("pause");
  107.     return 0;  
  108. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0, n=1, money=0;
  7.     int option, buyin, bet, winner;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r;
  10.     system("cls");
  11.     cout<<"「輸甲脫褲」賽馬場 第"<<n<<"局"<<endl;
  12.     cout<<"---------------------------------------------------------|終點"<<endl;
  13.     cout<<"◥1◣"<<endl;
  14.     cout<<"◥2◣"<<endl;
  15.     cout<<"◥3◣"<<endl;
  16.     cout<<"◥4◣"<<endl;
  17.     re2:
  18.     cout<<endl<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  19.     cout<<"(1)買入(2)下注(3)離開 請選擇: ";
  20.     cin>>option;
  21.     if(option==1)
  22.     {
  23.         cout<<"買入: ";
  24.         cin>>buyin;
  25.         balance+=buyin;
  26.         goto re1;
  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.         }else
  43.         {
  44.              cout<<endl<<"(1)◥1◣(2)◥2◣(3)◥3◣(4)◥4◣請選擇: ";
  45.              cin>>option;
  46.              cout<<"比賽即將開始!"<<endl<<endl;
  47.              system("pause");
  48.         }
  49.     }else if(option==3)
  50.     {
  51.         cout<<"輸入錯誤!"<<endl<<endl;
  52.         system("pause");
  53.         goto re1;
  54.     }
  55.     srand(time(NULL));
  56.     while((a!=60)&&(b!=60)&&(c!=60)&&(d!=60))
  57.     {
  58.              r=rand()%4;
  59.              if(r==0)
  60.                a++;     
  61.              else if(r==1)
  62.                b++;   
  63.              else if(r==2)
  64.                c++;   
  65.              else
  66.                d++;   
  67.              cout<<"比賽進行中...";
  68.              cout<<endl<<"---------------------------------------------------------|終點"<<endl;
  69.                for(int i=1;i<=a;i++)
  70.                  cout<<" ";
  71.                cout<<"◥1◣"<<endl;     
  72.                for(int i=1;i<=b;i++)
  73.                  cout<<" ";
  74.                cout<<"◥2◣"<<endl;
  75.                for(int i=1;i<=c;i++)
  76.                  cout<<" ";
  77.                cout<<"◥3◣"<<endl;     
  78.                for(int i=1;i<=d;i++)
  79.                  cout<<" ";
  80.                cout<<"◥4◣"<<endl;
  81.                system("cls");                           
  82.          }
  83.                if(a>b&&a>c&&a>d)
  84.                  winner=1;
  85.                else if(b>a&&b>c&&b>d)
  86.                  winner=2;
  87.                else if(c>a&&c>b&&c>d)
  88.                  winner=3;
  89.                else
  90.                  winner=4;
  91.                  
  92.                cout<<"比賽結束!"<<endl;
  93.                cout<<"由"<<winner<<"號選手拿到勝利----------------------------------------|終點"<<endl;
  94.                for(int i=1;i<=a;i++)
  95.                  cout<<" ";
  96.                cout<<"◥1◣"<<endl;     
  97.                for(int i=1;i<=b;i++)
  98.                  cout<<" ";
  99.                cout<<"◥2◣"<<endl;
  100.                for(int i=1;i<=c;i++)
  101.                  cout<<" ";
  102.                cout<<"◥3◣"<<endl;     
  103.                for(int i=1;i<=d;i++)
  104.                  cout<<" ";
  105.                cout<<"◥4◣"<<endl;                                       
  106.     system("pause");
  107.     return 0;  
  108. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int money=0,cg,n=1,buy,bet,player,choose;
  8.     choose:
  9.     cout<<"第"<<n<<"場"<<endl;      
  10.     cout<<"*準備輸光吧賽馬場*"<<endl;
  11.     cout<<endl<<"-----------------------------------------------------------------------|終點|"<<endl;
  12.     cout<<"◢1◤"<<endl;
  13.     cout<<"◢2◤"<<endl;
  14.     cout<<"◢3◤"<<endl;
  15.     cout<<"◢4◤"<<endl;
  16.     cout<<"您有"<<money<<"元"<<endl;
  17.     cout<<"需先買入並下注"<<endl;
  18.     cout<<"(1)買入(2)賭(3)離開"<<endl;
  19.     cin>>choose;
  20.     if(choose==1)
  21.     {
  22.         cout<<"買多少?"<<endl;
  23.         cin>>buy;
  24.         money=money+buy;
  25.         system("cls");
  26.         goto choose;            
  27.     }else if(choose==2)
  28.     {
  29.         cout<<"想賭哪位選手(共有4位)"<<endl;
  30.         cin>>player;
  31.         if(player>4 || player<1)
  32.         {
  33.             system("cls");
  34.             goto choose;         
  35.         }
  36.         cout<<"想賭多少?"<<endl;
  37.         cin>>bet;
  38.         if(bet>money)
  39.         {
  40.             system("cls");
  41.             goto choose;         
  42.         }
  43.         cout<<"(1)比賽開始(2)重選"<<endl;
  44.         cin>>cg;
  45.         system("cls");
  46.         if(cg==1)
  47.         goto re;
  48.         else if(cg==2)
  49.         goto choose;
  50.         else
  51.         cout<<"輸入錯誤"<<endl;
  52.         goto choose;      
  53.     }else if(choose==3)
  54.     {
  55.         system("cls");
  56.     }   
  57.     else
  58.     cout<<"輸入錯誤"<<endl;
  59.     system("cls");
  60.     goto choose;
  61.     re:
  62.     cout<<"*準備輸光吧賽馬場*"<<endl<<endl;
  63.     cout<<endl<<"-----------------------------------------------------------------------|終點|"<<endl;
  64.     cout<<"◢1◤"<<endl;
  65.     cout<<"◢2◤"<<endl;
  66.     cout<<"◢3◤"<<endl;
  67.     cout<<"◢4◤"<<endl;
  68.     system("pause");
  69.     system("cls");
  70.     srand(time(NULL));
  71.     int a=0 ,b=0, c=0, d=0,r,bigger,biggest,more;
  72.     while((a!=65) && (b!=65) && (c!=65) && (d!=65))
  73.     {
  74.         r=rand()%4;
  75.         if(r==0)              
  76.         a++;
  77.         else if(r==1)              
  78.         b++;
  79.         else if(r==2)              
  80.         c++;
  81.         else if(r==3)              
  82.         d++;
  83.     cout<<"比賽進行中"<<endl<<endl;
  84.     cout<<endl<<"-----------------------------------------------------------------|終點|"<<endl;
  85.     for(int i=1;i<=a;i++)
  86.         cout<<" ";
  87.     cout<<"◢1◤"<<endl;
  88.     for(int i=1;i<=b;i++)
  89.         cout<<" ";
  90.     cout<<"◢2◤"<<endl;
  91.     for(int i=1;i<=c;i++)
  92.         cout<<" ";
  93.     cout<<"◢3◤"<<endl;
  94.     for(int i=1;i<=d;i++)
  95.         cout<<" ";
  96.     cout<<"◢4◤"<<endl;
  97.     system("cls");         
  98.     }
  99.     more=(a>b)?a:b;
  100.     bigger=(c>d)?c:d;
  101.     biggest=(bigger>more)?bigger:more;
  102.     if(biggest==a)
  103.         cout<<"1號勝利"<<endl;
  104.     else if(biggest==b)
  105.              cout<<"2號勝利"<<endl;
  106.     else if(biggest==c)
  107.              cout<<"3號勝利"<<endl;
  108.     else if(biggest==d)
  109.     cout<<"4號勝利"<<endl;
  110.     cout<<"第"<<n<<"場"<<endl;
  111.     cout<<endl<<"-----------------------------------------------------------------|終點|"<<endl;
  112.     for(int i=1;i<=a;i++)
  113.         cout<<" ";
  114.     cout<<"◢1◤"<<endl;
  115.     for(int i=1;i<=b;i++)
  116.         cout<<" ";
  117.     cout<<"◢2◤"<<endl;
  118.     for(int i=1;i<=c;i++)
  119.         cout<<" ";
  120.     cout<<"◢3◤"<<endl;
  121.     for(int i=1;i<=d;i++)
  122.         cout<<" ";
  123.     cout<<"◢4◤"<<endl;
  124.     n++;
  125.     if(biggest==a && player==1)
  126.     {
  127.         money=money+bet;
  128.         cout<<"恭喜你贏了"<<bet<<"元"<<endl;              
  129.     }else if(biggest==b && player==2)
  130.     {
  131.         money=money+bet;
  132.         cout<<"恭喜你贏了"<<bet<<"元"<<endl;              
  133.     }else if(biggest==c && player==3)
  134.     {
  135.         money==money+bet;
  136.         cout<<"恭喜你贏了"<<bet<<"元"<<endl;              
  137.     }else if(biggest==d && player==4)
  138.     {
  139.         money=money+bet;
  140.         cout<<"恭喜你贏了"<<bet<<"元"<<endl;              
  141.     }else
  142.     {
  143.         money=money-bet;
  144.         cout<<"恭喜你輸了"<<bet<<"元"<<endl;     
  145.     }
  146.     system("pause");
  147.     system("cls");
  148.     goto choose;
  149.     system("pause");   
  150.     return 0;
  151. }
複製代碼

TOP

本帖最後由 許逸群 於 2013-11-9 14:19 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0, n=1, money=0;
  7.     int option, buyin, bet, winner;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r;
  10.     system("cls");
  11.     cout<<"賽馬場 第"<<n<<"局"<<endl;
  12.     cout<<"---------------------------------------------------------|終點"<<endl;
  13.     cout<<"◥1◣"<<endl;
  14.     cout<<"◥2◣"<<endl;
  15.     cout<<"◥3◣"<<endl;
  16.     cout<<"◥4◣"<<endl;
  17.     re2:
  18.     cout<<endl<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  19.     cout<<"(1)買入(2)下注(3)離開 請選擇: ";
  20.     cin>>option;
  21.     if(option==1)
  22.     {
  23.         cout<<"買入: ";
  24.         cin>>buyin;
  25.         balance+=buyin;
  26.         goto re1;
  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.         }else
  43.         {
  44.              cout<<endl<<"(1)◥1◣(2)◥2◣(3)◥3◣(4)◥4◣請選擇: ";
  45.              cin>>option;
  46.              cout<<"比賽即將開始!"<<endl<<endl;
  47.              system("pause");
  48.         }
  49.     }else if(option==3)
  50.     {
  51.         cout<<"輸入錯誤!"<<endl<<endl;
  52.         system("pause");
  53.         goto re1;
  54.     }
  55.     srand(time(NULL));
  56.     while((a!=60)&&(b!=60)&&(c!=60)&&(d!=60))
  57.     {
  58.              r=rand()%4;
  59.              if(r==0)
  60.                a++;     
  61.              else if(r==1)
  62.                b++;   
  63.              else if(r==2)
  64.                c++;   
  65.              else
  66.                d++;   
  67.              cout<<"比賽進行中...";
  68.              cout<<endl<<"---------------------------------------------------------|終點"<<endl;
  69.                for(int i=1;i<=a;i++)
  70.                  cout<<" ";
  71.                cout<<"◥1◣"<<endl;     
  72.                for(int i=1;i<=b;i++)
  73.                  cout<<" ";
  74.                cout<<"◥2◣"<<endl;
  75.                for(int i=1;i<=c;i++)
  76.                  cout<<" ";
  77.                cout<<"◥3◣"<<endl;     
  78.                for(int i=1;i<=d;i++)
  79.                  cout<<" ";
  80.                cout<<"◥4◣"<<endl;
  81.                system("cls");                           
  82.          }
  83.                if(a>b&&a>c&&a>d)
  84.                  winner=1;
  85.                else if(b>a&&b>c&&b>d)
  86.                  winner=2;
  87.                else if(c>a&&c>b&&c>d)
  88.                  winner=3;
  89.                else
  90.                  winner=4;
  91.                  
  92.                cout<<"比賽結束!"<<endl;
  93.                cout<<"由"<<winner<<"號選手拿到勝利----------------------------------------|終點"<<endl;
  94.                for(int i=1;i<=a;i++)
  95.                  cout<<" ";
  96.                cout<<"◥1◣"<<endl;     
  97.                for(int i=1;i<=b;i++)
  98.                  cout<<" ";
  99.                cout<<"◥2◣"<<endl;
  100.                for(int i=1;i<=c;i++)
  101.                  cout<<" ";
  102.                cout<<"◥3◣"<<endl;     
  103.                for(int i=1;i<=d;i++)
  104.                  cout<<" ";
  105.                cout<<"◥4◣"<<endl;                                       
  106.     system("pause");
  107.     return 0;  
  108. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0;
  7.     int buyin,option,winner;
  8.     re1:
  9.     int a=0,b=0,c=0,d=0,r;
  10.     system("cls");   
  11.     cout<<"$ 財源滾滾賽馬場 $"<<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;   //i+=2  i=i+2
  25.         goto re1;
  26.     }
  27.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while((a!=70)&&(b!=70)&&(c!=70)&&(d!=70))
  31.     {
  32.         r=rand()%4;    //產生0~3之隨機亂數
  33.         if(r==0)
  34.             a++;
  35.         if(r==1)
  36.             b++;
  37.         if(r==2)
  38.             c++;
  39.         if(r==3)
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"---------------------------------------------------------------------|終點|"<<endl;
  43.         for(int i=1;i<=a;i++)
  44.             cout<<" ";
  45.         cout<<"◥1◣"<<endl;
  46.         for(int i=1;i<=b;i++)
  47.             cout<<" ";
  48.         cout<<"◥2◣"<<endl;
  49.         for(int i=1;i<=c;i++)
  50.             cout<<" ";
  51.         cout<<"◥3◣"<<endl;
  52.         for(int i=1;i<=d;i++)
  53.             cout<<" ";
  54.         cout<<"◥4◣"<<endl;
  55.         system("cls");
  56.     }
  57.         if(a>b && a>c && a>d)
  58.             winner=1;
  59.         else if(b>a && b>c && b>d)
  60.              winner=2;
  61.         else if(c>a && c>b && c>d)
  62.              winner=3;
  63.         else
  64.             winner=4;
  65.         cout<<"比賽結束! 由 "<<winner<<" 號選手先馳得點!"<<endl;
  66.         cout<<"---------------------------------------------------------------------|終點|"<<endl;
  67.         for(int i=1;i<=a;i++)
  68.             cout<<" ";
  69.         cout<<"◥1◣"<<endl;
  70.         for(int i=1;i<=b;i++)
  71.             cout<<" ";
  72.         cout<<"◥2◣"<<endl;
  73.         for(int i=1;i<=c;i++)
  74.             cout<<" ";
  75.         cout<<"◥3◣"<<endl;
  76.         for(int i=1;i<=d;i++)
  77.             cout<<" ";
  78.         cout<<"◥4◣"<<endl;  
  79.     system("pause");   
  80.     return 0;
  81. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0;
  7.     int buyin,option,winner;
  8.     re1:
  9.     int a=0,b=0,c=0,d=0,r;
  10.     system("cls");   
  11.     cout<<"$ 財源滾滾賽馬場 $"<<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.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while((a!=70)&&(b!=70)&&(c!=70)&&(d!=70))
  31.     {
  32.         r=rand()%4;
  33.         if(r==0)
  34.             a++;
  35.         if(r==1)
  36.             b++;
  37.         if(r==2)
  38.             c++;
  39.         if(r==3)
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"---------------------------------------------------------------------|終點|"<<endl;
  43.         for(int i=1;i<=a;i++)
  44.             cout<<" ";
  45.         cout<<"◥1◣"<<endl;
  46.         for(int i=1;i<=b;i++)
  47.             cout<<" ";
  48.         cout<<"◥2◣"<<endl;
  49.         for(int i=1;i<=c;i++)
  50.             cout<<" ";
  51.         cout<<"◥3◣"<<endl;
  52.         for(int i=1;i<=d;i++)
  53.             cout<<" ";
  54.         cout<<"◥4◣"<<endl;
  55.         system("cls");
  56.     }
  57.         if(a>b && a>c && a>d)
  58.             winner=1;
  59.         else if(b>a && b>c && b>d)
  60.              winner=2;
  61.         else if(c>a && c>b && c>d)
  62.              winner=3;
  63.         else
  64.             winner=4;
  65.         cout<<"比賽結束! 由 "<<winner<<" 號選手先馳得點!"<<endl;
  66.         cout<<"---------------------------------------------------------------------|終點|"<<endl;
  67.         for(int i=1;i<=a;i++)
  68.             cout<<" ";
  69.         cout<<"◥1◣"<<endl;
  70.         for(int i=1;i<=b;i++)
  71.             cout<<" ";
  72.         cout<<"◥2◣"<<endl;
  73.         for(int i=1;i<=c;i++)
  74.             cout<<" ";
  75.         cout<<"◥3◣"<<endl;
  76.         for(int i=1;i<=d;i++)
  77.             cout<<" ";
  78.         cout<<"◥4◣"<<endl;  
  79.     system("pause");   
  80.     return 0;
  81. }
複製代碼

TOP

返回列表