Board logo

標題: 賽馬程式 (六) [打印本頁]

作者: 方浩葦    時間: 2024-7-27 11:16     標題: 賽馬程式 (六)

1. 比對比賽結果與玩家下注,判斷玩家贏了錢還是輸了錢。
2. 對變數balance做加減,使可用餘額會隨著玩家輸贏而增減。

規則如下:
若最後勝出的選手與玩家下注相同,玩家贏得下注金3倍的錢。
反之,玩家損失下注金。







本帖隱藏的內容需要回復才可以瀏覽

作者: 林少謙    時間: 2024-7-27 15:56

本帖最後由 林少謙 於 2024-7-27 15:58 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x,y,z,sum=0,money,money2,h,t=1;
  8.     string b[]{"◆","★","▲","●"};
  9.     re2:
  10.     int a[]{0,0,0,0};
  11.     system("cls");
  12.     cout<<"空蕩蕩賽馬場  第"<<t<<"局"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<endl;
  19.     cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  20.     cout<<"<1>買入 <2>下注 <3>離開   請選擇:";
  21.     cin>>z;
  22.     if(z==1)
  23.     {
  24.         cout<<endl;
  25.         cout<<"買入: ";
  26.         cin>>money;
  27.         sum+=money;
  28.         goto re2;
  29.     }
  30.     else if(z==2&&sum>0)
  31.     {
  32.         cout<<endl;
  33.         cout<<"下注: ";
  34.         cin>>money2;
  35.         if(sum>=money2)
  36.         {
  37.             cout<<endl;
  38.             sum-=money2;
  39.             re3:
  40.             cout<<"下注幾號 <1>◆ <2>★ <3>▲ <4>● :";
  41.             cin>>h;
  42.             cout<<endl;
  43.             if(h>4||h<1)
  44.             {
  45.                 cout<<"輸入錯誤 重新輸入"<<endl<<endl;
  46.                 _sleep(1500);
  47.                 goto re3;
  48.             }
  49.         }
  50.         else if(sum<money2)
  51.         {
  52.             cout<<"餘額不足請先買入"<<endl;
  53.             _sleep(1500);
  54.             goto re2;
  55.         }
  56.     }
  57.     else if(z==2&&sum<=0)
  58.     {
  59.         cout<<"餘額不足請先買入"<<endl;
  60.         _sleep(1500);
  61.         goto re2;
  62.     }
  63.     else if(z<=0||z>3)
  64.     {
  65.         cout<<"輸入錯誤 重新輸入";
  66.         _sleep(1500);
  67.         goto re2;
  68.     }
  69.     else if(z==3)
  70.     {
  71.         cout<<"慢走"<<endl;
  72.         goto re4;
  73.     }
  74.     system("pause");
  75.     re:
  76.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73)
  77.     {
  78.         system("cls");
  79.         cout<<"比賽開始"<<endl;
  80.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  81.         for(int i=0; i<=3; i++)
  82.        {
  83.            x=rand()%5+1;
  84.            a[i]+=x;
  85.            }
  86.            for(int i=1; i<=a[0]; i++)
  87.                 cout<<" ";
  88.             cout<<"◆"<<endl;
  89.            for(int i=1; i<=a[1]; i++)
  90.                 cout<<" ";
  91.             cout<<"★"<<endl;
  92.            for(int i=1; i<=a[2]; i++)
  93.                 cout<<" ";
  94.             cout<<"▲"<<endl;
  95.            for(int i=1; i<=a[3]; i++)
  96.                 cout<<" ";
  97.             cout<<"●"<<endl;
  98.          _sleep(100);
  99.         goto re;

  100.     }
  101.     else
  102.     {
  103.         if(a[0]>=73)
  104.             y=0;
  105.         if(a[1]>=73)
  106.             y=1;
  107.         if(a[2]>=73)
  108.             y=2;
  109.         if(a[3]>=73)
  110.             y=3;
  111.         system("cls");
  112.         cout<<"比賽結束由"<<b[y]<<"獲勝"<<endl;
  113.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  114.            for(int i=1; i<=a[0]; i++)
  115.                 cout<<" ";
  116.             cout<<"◆"<<endl;
  117.            for(int i=1; i<=a[1]; i++)
  118.                 cout<<" ";
  119.             cout<<"★"<<endl;
  120.            for(int i=1; i<=a[2]; i++)
  121.                 cout<<" ";
  122.             cout<<"▲"<<endl;
  123.            for(int i=1; i<=a[3]; i++)
  124.                 cout<<" ";
  125.             cout<<"●"<<endl;
  126.     }
  127.     if(y+1==h)
  128.     {
  129.         cout<<"賺到"<<money2*3<<"元"<<endl;
  130.         sum+=money2*4;
  131.     }
  132.     if(y+1!=h)
  133.     {
  134.         cout<<"損失"<<money2<<"元"<<endl;
  135.     }
  136.     system("pause");
  137.     t+=1;
  138.     goto re2;
  139.     re4:
  140.     system("pause");
  141.     return 0;
  142. }
複製代碼

作者: 李唯銘    時間: 2024-8-3 14:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1, balance=0;
  8.     int option, buying, bet, player;
  9.     re:
  10.         system("cls");
  11.         srand(time(NULL));
  12.         int s[]={0,0,0,0};
  13.         string p[]={"◆","★","▲","●"};
  14.         int r=0;
  15.         cout<<"本賽馬場 第"<<n<<"局"<<endl;
  16.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  17.         for(int i=0; i<4; i++){
  18.             cout<<p[i]<<endl;
  19.         }
  20.         cout<<"可用餘額"<<balance<<"元"<<endl;
  21.         cout<<"請選擇 (1)買入(2)下注(3)離開"<<endl;
  22.         cin>>option;
  23.         if(option==1){
  24.             cout<<"買入 :"<<endl;
  25.             cin>>buying;
  26.             if(buying<=0){
  27.                 cout<<"輸入錯誤"<<endl;
  28.                 _sleep(1500);
  29.                 goto re;
  30.             }
  31.             balance+=buying;
  32.             goto re;
  33.         }
  34.         else if(option==2){
  35.             cout<<"下注 :"<<endl;
  36.             cin>>bet;
  37.             if(bet>balance){
  38.                 cout<<"餘額不足"<<endl;
  39.                 _sleep(1500);
  40.                 goto re;
  41.             }
  42.             if(bet<=0){
  43.                 cout<<"輸入錯誤"<<endl;
  44.                 _sleep(1500);
  45.                 goto re;
  46.             }
  47.             cout<<"請選擇  (1)◆ (2)★ (3)▲ (4)●"<<endl;
  48.             cin>>player;
  49.             cout<<"比賽即將開始"<<endl;
  50.         }
  51.         else if(option==3){
  52.             goto end;
  53.         }
  54.         else{
  55.             cout<<"輸入錯誤"<<endl;
  56.             _sleep(1500);
  57.             goto re;
  58.         }
  59.         system("pause");
  60.         system("cls");
  61.         while(s[r]<=73){
  62.         r=rand()%4;
  63.         s[r]++;
  64.         cout<<"比賽進行中"<<endl;
  65.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  66.         for(int i=0; i<4; i++){
  67.             for(int j=0; j<s[i]; j++)
  68.             cout<<" ";
  69.             cout<<p[i]<<endl;
  70.         }
  71.         _sleep(50);
  72.         system("cls");
  73.         }
  74.         cout<<"最終由"<<p[r]<<"先馳得點"<<endl;
  75.         cout<<"比賽結束"<<endl;
  76.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  77.         for(int i=0; i<4; i++){
  78.             for(int j=0; j<s[i]; j++)
  79.             cout<<" ";
  80.             cout<<p[i]<<endl;
  81.         }
  82.         if(r+1==player){
  83.             balance+=bet*3;
  84.             cout<<"贏得"<<bet*3<<"元"<<endl;
  85.         }
  86.         else{
  87.             balance-=bet;
  88.             cout<<"損失"<<bet<<"元"<<endl;
  89.         }
  90.         system("pause");
  91.         n++;
  92.         goto re;
  93.         end:
  94.             cout<<"慢走"<<endl;
  95.             _sleep(1500);
  96.             return 0;

  97. }
複製代碼

作者: 劉奕劭    時間: 2024-8-3 14:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x,y,sum=0;
  8.     int money,money2;
  9.     int c=1;

  10.     srand(time(NULL));
  11.     string b[]{"◆","★","▲","●"};
  12.     re:
  13.     int z=0;
  14.     int a[]{0,0,0,0};
  15.     system("cls");
  16.     cout<<"「好事成雙」賽馬場  第"<<c<<" 局"<<endl;
  17.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  18.     for(int i=0; i<4; i++)
  19.         cout<<b[i]<<endl;
  20.     cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  21.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  22.     cin>>x;
  23.     if(x==1){
  24.         cout<<"買入: ";
  25.         cin>>money;
  26.             if(money<=0){
  27.                 cout<<"輸入錯誤!";
  28.                 _sleep(1500);
  29.                 goto re;
  30.             }else{
  31.                 sum+=money;
  32.                 goto re;
  33.             }
  34.     }else if(x==2){
  35.         cout<<"下注: ";
  36.         cin>>money2;
  37.         if(money2<=0){
  38.             cout<<"輸入錯誤!";
  39.             _sleep(1500);
  40.             goto re;
  41.         }else if(money2>sum){
  42.             cout<<"可用餘額不足,請先買入!";
  43.             _sleep(1500);
  44.             goto re;
  45.         }else{
  46.             cout<<"請選擇下注對象!";
  47.             cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  48.             cin>>y;
  49.             sum-=money2;
  50.             cout<<"比賽即將開始..."<<endl<<endl;
  51.         }

  52.     }else if(x==3){
  53.         goto end;
  54.     }else{
  55.         cout<<"輸入錯誤!";
  56.         _sleep(1500);
  57.         goto re;
  58.     }
  59.     system("pause");
  60.     system("cls");
  61.     while(a[z]<=73)
  62.     {
  63.         z=rand()%4;
  64.         a[z]++;
  65.         cout<<"比賽進行中"<<endl;
  66.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  67.         for(int i=0; i<4; i++)
  68.         {
  69.             for(int j=0; j<a[i]; j++)
  70.                 cout<<" ";
  71.                 cout<<b[i]<<endl;
  72.         }
  73.         _sleep(1);
  74.         system("cls");
  75.     }
  76.     cout<<"比賽結束!  由 "<<b[z]<<" 先馳得點!"<<endl;
  77.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  78.     for(int i=0; i<4; i++)
  79.         {
  80.             for(int j=0; j<a[i]; j++)
  81.                 cout<<" ";
  82.                 cout<<b[i]<<endl;
  83.         }
  84.     if(y-1==z){
  85.         cout<<"恭喜贏得"<<money2*3<<"元!!!";
  86.         sum+=money2*3;
  87.     }else{
  88.         cout<<"損失"<<money2<<"元";
  89.     }
  90.     c++;
  91.     system("pause");
  92.     goto re;
  93.     end:
  94.     cout<<endl<<"慢走!"<<endl;
  95.     _sleep(1500);
  96.     system("pause");
  97.     return 0;
  98. }
複製代碼

作者: 陳妍蓁    時間: 2024-8-3 15:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     string h[]={"◆","★","▲","●"};
  7.     int m=0,m1,m2,option1,option2,x=1,y,r;
  8.     int n[]={0,0,0,0};
  9.     srand(time(NULL));
  10. re:
  11.     system("cls");
  12.     cout<<"好事成雙賽馬場 第"<<x<<"場"<<endl;
  13.     cout<<"----------------------------------------------------------------------|終點"<<endl;
  14.     for(int i=0;i<4;i++)
  15.         cout<<h[i]<<endl;
  16. re2:

  17.     cout<<endl<<"可用餘額:"<<m<<"元"<<endl;
  18.     cout<<"(1)買入 (2)下注 (3)離開   請選擇:"<<endl;
  19.     cin>>option1;
  20.     if(option1==1){
  21.         cout<<"買入:";
  22.         cin>>m1;
  23.         if(m1<=0){
  24.             cout<<"輸入錯誤"<<endl;
  25.             _sleep(1500);
  26.             goto re;
  27.         }
  28.         m+=m1;
  29.         goto re;
  30.     }
  31.     else if(option1==2){
  32.         cout<<"下注:";
  33.         cin>>m2;
  34.         if(m2<=0){
  35.             cout<<"輸入錯誤"<<endl;
  36.             _sleep(1500);
  37.             goto re;
  38.         }
  39.         if(m2>m){
  40.             cout<<"餘額不足"<<endl;
  41.             _sleep(1500);
  42.             goto re;
  43.         }
  44.         cout<<"(1)◆ (2)★ (3)▲ (4)●請選擇:"<<endl;
  45.         cin>>option2;
  46.         cout<<"比賽即將開始...."<<endl;
  47.     }
  48.     else if(option1==3){
  49.         goto end;
  50.     }
  51.     else{
  52.         cout<<"輸入錯誤"<<endl;
  53.             _sleep(1500);
  54.             system("cls");
  55.             goto re2;
  56.     }
  57.         system("pause");
  58.         system("cls");

  59.     while(n[r]<73){
  60.        r=rand()%4;
  61.        n[r]++;
  62.         _sleep(0.1);
  63.         cout<<"比賽進行中"<<endl;
  64.         cout<<"---------------------------------------------------------------------------|終點"<<endl;
  65.         for(int i=0;i<=n[0];i++)
  66.             cout<<" ";
  67.             cout<<"◆"<<endl;
  68.         for(int i=0;i<=n[1];i++)
  69.             cout<<" ";
  70.             cout<<"★"<<endl;
  71.         for(int i=0;i<=n[2];i++)
  72.             cout<<" ";
  73.             cout<<"▲"<<endl;
  74.         for(int i=0;i<=n[3];i++)
  75.             cout<<" ";
  76.             cout<<"●"<<endl;
  77.         if(n[r]==73)
  78.             break;
  79.             _sleep(50);
  80.             system("cls");
  81.     }
  82.     system("cls");
  83.     cout<<"比賽結束 由"<<h[r]<<"獲勝"<<endl;
  84.     cout<<"---------------------------------------------------------------------------|終點"<<endl;
  85.     for(int i=0;i<=n[0];i++)
  86.             cout<<" ";
  87.             cout<<"◆"<<endl;
  88.     for(int i=0;i<=n[1];i++)
  89.             cout<<" ";
  90.             cout<<"★"<<endl;
  91.     for(int i=0;i<=n[2];i++)
  92.             cout<<" ";
  93.             cout<<"▲"<<endl;
  94.     for(int i=0;i<=n[3];i++)
  95.             cout<<" ";
  96.             cout<<"●"<<endl;

  97.         if(option2==r+1){
  98.             cout<<"賺到"<<m2*3<<"元"<<endl;
  99.             m+=m2*3;
  100.         }
  101.         else{
  102.             cout<<"賠"<<m2<<"元"<<endl;
  103.             m-=m2;
  104.         }
  105.         system("pause");
  106.         system("cls");
  107.         x++;
  108.         goto re;
  109. end:
  110.     cout<<"慢走!"<<endl;
  111.     _sleep(1500);
  112.     return 0;
  113. }
複製代碼

作者: 洪榮辰    時間: 2024-8-3 15:21

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a=1;
  8.     int balance=0, x, money, money2, n;
  9.     re:
  10.     system("cls");
  11.     srand(time(NULL));
  12.     int s[]={0,0,0,0};
  13.     cout<<"「好事成雙」賽馬場 第 "<<a<<" 局"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     cout<<"◆"<<endl;
  16.     cout<<"★"<<endl;
  17.     cout<<"▲"<<endl;
  18.     cout<<"●"<<endl;
  19.     {
  20.         cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
  21.         cout<<"(1)買入  (2)下注  (3)離開  請選擇:";
  22.         cin>>x;
  23.         if(x==1)
  24.         {
  25.             cout<<"買入: ";
  26.             cin>>money;
  27.             balance+=money;
  28.             system("cls");
  29.             goto re;
  30.         }
  31.         else if(x==2)
  32.         {
  33.             cout<<"下注: ";
  34.             cin>>money2;
  35.             cout<<endl;
  36.             cout<<"(1)◆ (2)★ (3)▲ (4)●  請選擇:";
  37.             cin>>n;
  38.             if(n>4)
  39.             {
  40.             system("cls");
  41.             goto re;
  42.             }
  43.             else
  44.             {
  45.             cout<<"比賽即將開始..."<<endl<<endl;
  46.             system("pause");
  47.             }
  48.         }
  49.         else if(x==3)
  50.             {
  51.             cout<<"慢走"<<endl;
  52.             system("pause");
  53.             system("cls");
  54.             goto re;
  55.             }
  56.     }
  57.     while(true)
  58.     {
  59.         system("cls");
  60.         int r=rand()%4;
  61.         s[r]++;
  62.         cout<<"比賽進行中"<<endl;
  63.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.         for(int i=0; i<=s[0]; i++)
  65.             cout<<" ";
  66.         cout<<"◆"<<endl;
  67.         for(int i=0; i<=s[1]; i++)
  68.             cout<<" ";
  69.         cout<<"★"<<endl;
  70.         for(int i=0; i<=s[2]; i++)
  71.             cout<<" ";
  72.         cout<<"▲"<<endl;
  73.         for(int i=0; i<=s[3]; i++)
  74.             cout<<" ";
  75.         cout<<"●"<<endl;
  76.         if(s[r]==73)
  77.             break;
  78.         _sleep(0.00000001);
  79.     }
  80.     system("cls");
  81.     cout<<"比賽結束 ";
  82.     if(s[0]==73)
  83.         cout<<"由◆先馳得點!"<<endl;
  84.     if(s[1]==73)
  85.         cout<<"由★先馳得點!"<<endl;
  86.     if(s[2]==73)
  87.         cout<<"由▲先馳得點!"<<endl;
  88.     if(s[3]==73)
  89.         cout<<"由●先馳得點!"<<endl;
  90.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  91.     for(int i=0; i<=s[0]; i++)
  92.         cout<<" ";
  93.     cout<<"◆"<<endl;
  94.     for(int i=0; i<=s[1]; i++)
  95.         cout<<" ";
  96.     cout<<"★"<<endl;
  97.     for(int i=0; i<=s[2]; i++)
  98.         cout<<" ";
  99.     cout<<"▲"<<endl;
  100.     for(int i=0; i<=s[3]; i++)
  101.         cout<<" ";
  102.     cout<<"●"<<endl;
  103.     if(n==s[0])
  104.         {
  105.         cout<<"贏得"<<money2*3<<"元"<<endl;
  106.         balance+=money2*3;
  107.         }
  108.     if(n==s[1])
  109.         {
  110.         cout<<"贏得"<<money2*3<<"元"<<endl;
  111.         balance+=money2*3;
  112.         }
  113.     if(n==s[2])
  114.         {
  115.         cout<<"贏得"<<money2*3<<"元"<<endl;
  116.         balance+=money2*3;
  117.         }
  118.     if(n==s[3])
  119.         {
  120.         cout<<"贏得"<<money2*3<<"元"<<endl;
  121.         balance+=money2*3;
  122.         }
  123.     else
  124.         {
  125.         cout<<"損失"<<money2<<"元"<<endl;
  126.         balance-=money2;
  127.         }
  128.     system("pause");
  129.     a++;
  130.     goto re;
  131.     return 0;
  132. }
複製代碼

作者: 李偈睿    時間: 2024-8-10 15:40

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1, balance=0;
  8.     int option, buyin, bet, player;
  9.     re:
  10.     system("cls");
  11.     srand(time(NULL));
  12.     int s[]={0,0,0,0};
  13.     string p[]={"◆","★","▲","●"};
  14.     int r=0;
  15.     cout<<"「好事成雙」賽馬場  第 "<<n<<" 局"<<endl;
  16.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  17.     for(int i=0; i<4; i++)
  18.         cout<<p[i]<<endl;
  19.     cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  20.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  21.     cin>>option;
  22.     if(option==1)
  23.     {
  24.         cout<<"買入: ";
  25.         cin>>buyin;
  26.         if(buyin<=0)
  27.         {
  28.              cout<<"輸入錯誤!";
  29.              _sleep(1500);
  30.              goto re;     
  31.         }
  32.         balance+=buyin;
  33.         goto re;         
  34.     }
  35.     else if(option==2)
  36.     {
  37.         cout<<"下注: ";
  38.         cin>>bet;
  39.         if(bet<=0)
  40.         {
  41.              cout<<"輸入錯誤!";
  42.              _sleep(1500);
  43.              goto re;     
  44.         }
  45.         if(bet>balance)
  46.         {
  47.              cout<<"可用餘額不足,請先買入!";
  48.              _sleep(1500);
  49.              goto re;     
  50.         }
  51.         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  52.         cin>>player;
  53.         cout<<"比賽即將開始..."<<endl<<endl;         
  54.     }
  55.     else if(option==3)
  56.     {
  57.         goto end;         
  58.     }
  59.     else
  60.     {
  61.         cout<<"輸入錯誤!";
  62.         _sleep(1500);
  63.         goto re;
  64.     }
  65.     system("pause");
  66.     system("cls");
  67.     while(s[r]<=73)
  68.     {
  69.         r=rand()%4;   //0~3
  70.         s[r]++;
  71.         cout<<"比賽進行中"<<endl;
  72.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  73.         for(int i=0; i<4; i++)
  74.         {
  75.             for(int j=0; j<s[i]; j++)
  76.                 cout<<" ";
  77.             cout<<p[i]<<endl;
  78.         }
  79.         _sleep(25);
  80.         system("cls");
  81.     }
  82.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  83.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  84.     for(int i=0; i<4; i++)
  85.     {
  86.         for(int j=0; j<s[i]; j++)
  87.             cout<<" ";
  88.         cout<<p[i]<<endl;
  89.     }
  90.     if(player==r+1)
  91.     {
  92.         cout<<"贏了 "<<bet*3<<" 元!"<<endl;
  93.         balance+=bet*3;                  
  94.     }else
  95.     {
  96.         cout<<"損失 "<<bet<<" 元!"<<endl;
  97.         balance-=bet;  
  98.     }
  99.     system("pause");
  100.     n++;
  101.     goto re;
  102.     end:
  103.     cout<<endl<<"慢走!"<<endl;
  104.     _sleep(1500);
  105.     return 0;
  106. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2