返回列表 發帖

[作業] 賽馬程式 (七)

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



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

  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,e=0;
  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.         system("pause");
  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.         e+=money2*3;
  132.     }
  133.     if(y+1!=h)
  134.     {
  135.         cout<<"損失"<<money2<<"元"<<endl;
  136.         e-=money2;
  137.     }
  138.     system("pause");
  139.     t+=1;
  140.     goto re2;
  141.     re4:
  142.     if(e>0)
  143.     {
  144.         cout<<"恭喜你!這次總共贏了"<<e<<"元!"<<endl<<endl;
  145.         cout<<"謝謝光臨 下次還來"<<endl;
  146.     }
  147.     else if(e<0)
  148.     {
  149.         cout<<"不好意思!讓你損失了"<<-e<<"元!"<<endl<<endl;
  150.         cout<<"謝謝光臨 下次還來"<<endl;
  151.     }
  152.     else
  153.     {
  154.         cout<<"沒輸沒贏!全身而退!"<<endl<<endl;
  155.         cout<<"謝謝光臨 下次還來"<<endl;
  156.     }
  157.     cout<<
  158.     system("pause");
  159.     return 0;
  160. }
複製代碼

TOP

  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, all;
  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.             all+=buying;
  33.             goto re;
  34.         }
  35.         else if(option==2){
  36.             cout<<"下注 :"<<endl;
  37.             cin>>bet;
  38.             if(bet>balance){
  39.                 cout<<"餘額不足"<<endl;
  40.                 _sleep(1500);
  41.                 goto re;
  42.             }
  43.             if(bet<=0){
  44.                 cout<<"輸入錯誤"<<endl;
  45.                 _sleep(1500);
  46.                 goto re;
  47.             }
  48.             cout<<"請選擇  (1)◆ (2)★ (3)▲ (4)●"<<endl;
  49.             cin>>player;
  50.             cout<<"比賽即將開始"<<endl;
  51.         }
  52.         else if(option==3){
  53.             goto end;
  54.         }
  55.         else{
  56.             cout<<"輸入錯誤"<<endl;
  57.             _sleep(1500);
  58.             goto re;
  59.         }
  60.         system("pause");
  61.         system("cls");
  62.         while(s[r]<=73){
  63.         r=rand()%4;
  64.         s[r]++;
  65.         cout<<"比賽進行中"<<endl;
  66.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  67.         for(int i=0; i<4; i++){
  68.             for(int j=0; j<s[i]; j++)
  69.             cout<<" ";
  70.             cout<<p[i]<<endl;
  71.         }
  72.         _sleep(50);
  73.         system("cls");
  74.         }
  75.         cout<<"最終由"<<p[r]<<"先馳得點"<<endl;
  76.         cout<<"比賽結束"<<endl;
  77.         cout<<"-------------------------------------------------------------------------  終點"<<endl;
  78.         for(int i=0; i<4; i++){
  79.             for(int j=0; j<s[i]; j++)
  80.             cout<<" ";
  81.             cout<<p[i]<<endl;
  82.         }
  83.         if(r+1==player){
  84.             balance+=bet*3;
  85.             cout<<"贏得"<<bet*3<<"元"<<endl;
  86.         }
  87.         else{
  88.             balance-=bet;
  89.             cout<<"損失"<<bet<<"元"<<endl;
  90.         }
  91.         system("pause");
  92.         n++;
  93.         goto re;
  94.         end:
  95.             if(all==balance){
  96.                 cout<<"沒輸沒贏"<<endl;
  97.             }
  98.             if(all<balance){
  99.                 cout<<"恭喜 這次賺了"<<balance-all<<"元"<<endl;
  100.             }
  101.             if(all>balance){
  102.                 cout<<"可惜 這次損失"<<all-balance<<"元"<<endl;
  103.             }
  104.             cout<<"慢走"<<endl;
  105.             _sleep(1500);
  106.             return 0;

  107. }
複製代碼

TOP

  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,e=0;
  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.         system("pause");
  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.         e+=money2*3;
  132.     }
  133.     if(y+1!=h)
  134.     {
  135.         cout<<"損失"<<money2<<"元"<<endl;
  136.         e-=money2;
  137.     }
  138.     system("pause");
  139.     t+=1;
  140.     goto re2;
  141.     re4:
  142.     if(e>0)
  143.     {
  144.         cout<<"恭喜你!這次總共贏了"<<e<<"元!"<<endl<<endl;
  145.         cout<<"謝謝光臨 下次還來"<<endl;
  146.     }
  147.     else if(e<0)
  148.     {
  149.         cout<<"不好意思!讓你損失了"<<-e<<"元!"<<endl<<endl;
  150.         cout<<"謝謝光臨 下次還來"<<endl;
  151.     }
  152.     else
  153.     {
  154.         cout<<"沒輸沒贏!全身而退!"<<endl<<endl;
  155.         cout<<"謝謝光臨 下次還來"<<endl;
  156.     }
  157.     cout<<
  158.     system("pause");
  159.     return 0;
  160. }
複製代碼

TOP

  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.             if(money2>balance)
  36.                 {
  37.                 cout<<"輸入錯誤"<<endl;
  38.                 system("pause");
  39.                 system("cls");
  40.                 goto re;
  41.                 }
  42.             cout<<endl;
  43.             cout<<"(1)◆ (2)★ (3)▲ (4)●  請選擇:";
  44.             cin>>n;
  45.             if(n>4)
  46.             {
  47.             cout<<"輸入錯誤"<<endl;
  48.             system("pause");
  49.             system("cls");
  50.             goto re;
  51.             }
  52.             else
  53.             {
  54.             cout<<"比賽即將開始..."<<endl<<endl;
  55.             system("pause");
  56.             }
  57.         }
  58.         else if(x==3)
  59.             {
  60.             if(balance>0)
  61.                 {
  62.                 cout<<"恭喜你!這次總共贏了"<<balance<<"元!"<<endl<<endl;
  63.                 }
  64.             else if(balance<0)
  65.                 {
  66.                 cout<<"不好意思!讓你損失了"<<-balance<<"元!"<<endl<<endl;
  67.                 }
  68.             else
  69.                 {
  70.                 cout<<"沒輸沒贏!全身而退!"<<endl<<endl;
  71.                 }
  72.                 system("pause");
  73.                 return 0;
  74.             }
  75.         else
  76.             {
  77.             cout<<"輸入錯誤"<<endl;
  78.             system("pause");
  79.             system("cls");
  80.             goto re;
  81.             }
  82.     }
  83.     while(true)
  84.     {
  85.         system("cls");
  86.         int r=rand()%4;
  87.         s[r]++;
  88.         cout<<"比賽進行中"<<endl;
  89.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  90.         for(int i=0; i<=s[0]; i++)
  91.             cout<<" ";
  92.         cout<<"◆"<<endl;
  93.         for(int i=0; i<=s[1]; i++)
  94.             cout<<" ";
  95.         cout<<"★"<<endl;
  96.         for(int i=0; i<=s[2]; i++)
  97.             cout<<" ";
  98.         cout<<"▲"<<endl;
  99.         for(int i=0; i<=s[3]; i++)
  100.             cout<<" ";
  101.         cout<<"●"<<endl;
  102.         if(s[r]==73)
  103.             break;
  104.         _sleep(0.00000001);
  105.     }
  106.     system("cls");
  107.     cout<<"比賽結束 ";
  108.     if(s[0]==73)
  109.         cout<<"由◆先馳得點!"<<endl;
  110.     if(s[1]==73)
  111.         cout<<"由★先馳得點!"<<endl;
  112.     if(s[2]==73)
  113.         cout<<"由▲先馳得點!"<<endl;
  114.     if(s[3]==73)
  115.         cout<<"由●先馳得點!"<<endl;
  116.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  117.     for(int i=0; i<=s[0]; i++)
  118.         cout<<" ";
  119.     cout<<"◆"<<endl;
  120.     for(int i=0; i<=s[1]; i++)
  121.         cout<<" ";
  122.     cout<<"★"<<endl;
  123.     for(int i=0; i<=s[2]; i++)
  124.         cout<<" ";
  125.     cout<<"▲"<<endl;
  126.     for(int i=0; i<=s[3]; i++)
  127.         cout<<" ";
  128.     cout<<"●"<<endl;
  129.     if(n==s[0])
  130.         {
  131.         cout<<"贏得"<<money2*3<<"元"<<endl;
  132.         balance+=money2*3;
  133.         }
  134.     if(n==s[1])
  135.         {
  136.         cout<<"贏得"<<money2*3<<"元"<<endl;
  137.         balance+=money2*3;
  138.         }
  139.     if(n==s[2])
  140.         {
  141.         cout<<"贏得"<<money2*3<<"元"<<endl;
  142.         balance+=money2*3;
  143.         }
  144.     if(n==s[3])
  145.         {
  146.         cout<<"贏得"<<money2*3<<"元"<<endl;
  147.         balance+=money2*3;
  148.         }
  149.     else
  150.         {
  151.         cout<<"損失"<<money2<<"元"<<endl;
  152.         balance-=money2;
  153.         }
  154.     system("pause");
  155.     a++;
  156.     goto re;
  157.     return 0;
  158. }
複製代碼

TOP

本帖最後由 陳妍蓁 於 2024-8-10 11:58 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=0,m=0,sum=0,m1,m2,r,x;
  8.     int option1,option2;
  9.     string h[]={"◆","★","▲","●"};
  10.     int a[]={0,0,0,0};
  11.     srand(time(NULL));
  12.     re:
  13.         system("cls");
  14.         cout<<"好事成雙賽馬場 第"<<x<<"局"<<endl;
  15.         cout<<"----------------------------------------------------------------------------|終點"<<endl;
  16.         for(int i=0;i<=3;i++)
  17.             cout<<h[i]<<endl;
  18.     re2:
  19.         cout<<endl<<"可用餘額"<<m<<"元"<<endl<<endl;
  20.         cout<<"(1)買入 (2)下注 (3)離開 請選擇:"<<endl;
  21.         cin>>option1;
  22.         if(option1==1){
  23.             cout<<"(1)買入:";
  24.             cin>>m1;
  25.             cout<<"元"<<endl;
  26.             if(m1<=0){
  27.                 cout<<"輸入錯誤"<<endl;
  28.                 _sleep(1500);
  29.                 goto re;
  30.             }
  31.             m=m1++;
  32.             sum+=m1;
  33.             goto re;
  34.         }
  35.         else if (option1==2){
  36.             cout<<"下注:";
  37.             cin>>m2;
  38.             if(m2<=0 || m2>m){
  39.                 cout<<"輸入錯誤"<<endl;
  40.                 _sleep(1500);
  41.                 goto re;
  42.             }
  43.             cout<<"請選擇:(1)◆ (2)★ (3)▲ (4)●";
  44.             cin>>option2;
  45.             cout<<"比賽即將開始..."<<endl;

  46.         }
  47.         else if(option1==3){
  48.             goto end;
  49.         }
  50.         else
  51.             goto re;
  52.         system("pause");

  53.         while(true){
  54.             system("cls");
  55.             cout<<"比賽進行中"<<endl;
  56.             cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  57.             r=rand()%4;
  58.             a[r]++;
  59.             _sleep(5);
  60.             for(int i=0;i<=a[0];i++)
  61.                 cout<<" ";
  62.                 cout<<"◆"<<endl;
  63.             for(int i=0;i<=a[1];i++)
  64.                 cout<<" ";
  65.                 cout<<"★"<<endl;
  66.             for(int i=0;i<=a[2];i++)
  67.                 cout<<" ";
  68.                 cout<<"▲"<<endl;
  69.             for(int i=0;i<=a[3];i++)
  70.                 cout<<" ";
  71.                 cout<<"●"<<endl;

  72.             if(a[r]==73){
  73.                 break;
  74.                 _sleep(50);
  75.                 system("cls");
  76.             }
  77.         }
  78.             system("cls");
  79.             cout<<"比賽結束 由:"<<h[r]<<"勝出"<<endl;
  80.             cout<<"----------------------------------------------------------------------------| 終點"<<endl;
  81.             for(int i=0;i<=a[0];i++)
  82.                 cout<<" ";
  83.                 cout<<"◆"<<endl;
  84.             for(int i=0;i<=a[1];i++)
  85.                 cout<<" ";
  86.                 cout<<"★"<<endl;
  87.             for(int i=0;i<=a[2];i++)
  88.                 cout<<" ";
  89.                 cout<<"▲"<<endl;
  90.             for(int i=0;i<=a[3];i++)
  91.                 cout<<" ";
  92.                 cout<<"●"<<endl;

  93.             if(option2==r+1){
  94.                 cout<<"賺到"<<m2*3<<"元"<<endl;
  95.                 m+=m2*3;
  96.             }
  97.             else{
  98.                 cout<<"賠"<<m2<<"元"<<endl;
  99.                 m-=m2;
  100.             }

  101.             system("pause");
  102.             r++;
  103.             goto re;
  104.     end:
  105.         if(sum==m)
  106.             cout<<"沒輸沒贏!全身而退!"<<endl<<endl;
  107.         else if(sum<m)
  108.             cout<<"恭喜你!這次總共贏了"<<m-sum<<"元!"<<endl<<endl;
  109.         else if(sum>m)
  110.             cout<<"不好意思!讓你損失了"<<sum-m<<"元!"<<endl<<endl;

  111.         cout<<"謝謝光臨,下次再來"<<endl;
  112.         _sleep(50);
  113.         return 0;
  114. }
複製代碼

TOP

返回列表