返回列表 發帖

[作業] 賽馬程式 (五)

1. 完成主選單的主要架構 (運用if...else if...else判斷式)
2. 新增 (2)下注 功能
3. 處理 下注 時可能出現的bug: 當輸入0以下的數字, 顯示 "輸入錯誤!"
4. 處理 下注 時可能出現的bug: 當下注金額超過可用餘額, 顯示 "可用餘額不足,請先買入!"
5. 處理 買入 時可能出現的bug: 當輸入0以下的數字, 顯示 "輸入錯誤!"
6. 錯誤提示訊息顯示 1.5秒 後自動消失, 並回到輸入畫面, 使能重新輸入



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

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a=1;
  8.     int sum=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<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  21.         cout<<"(1)買入  (2)下注  (3)離開  請選擇:";
  22.         cin>>x;
  23.         if(x==1)
  24.         {
  25.             cout<<"買入: ";
  26.             cin>>money;
  27.             sum+=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.     }
  50.     while(true)
  51.     {
  52.         system("cls");
  53.         int r=rand()%4;
  54.         s[r]++;
  55.         cout<<"比賽進行中"<<endl;
  56.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  57.         for(int i=0; i<=s[0]; i++)
  58.             cout<<" ";
  59.         cout<<"◆"<<endl;
  60.         for(int i=0; i<=s[1]; i++)
  61.             cout<<" ";
  62.         cout<<"★"<<endl;
  63.         for(int i=0; i<=s[2]; i++)
  64.             cout<<" ";
  65.         cout<<"▲"<<endl;
  66.         for(int i=0; i<=s[3]; i++)
  67.             cout<<" ";
  68.         cout<<"●"<<endl;
  69.         if(s[r]==73)
  70.             break;
  71.         _sleep(0.00000001);
  72.     }
  73.     system("cls");
  74.     cout<<"比賽結束 ";
  75.     if(s[0]==73)
  76.         cout<<"由◆先馳得點!"<<endl;
  77.     if(s[1]==73)
  78.         cout<<"由★先馳得點!"<<endl;
  79.     if(s[2]==73)
  80.         cout<<"由▲先馳得點!"<<endl;
  81.     if(s[3]==73)
  82.         cout<<"由●先馳得點!"<<endl;
  83.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  84.     for(int i=0; i<=s[0]; i++)
  85.         cout<<" ";
  86.     cout<<"◆"<<endl;
  87.     for(int i=0; i<=s[1]; i++)
  88.         cout<<" ";
  89.     cout<<"★"<<endl;
  90.     for(int i=0; i<=s[2]; i++)
  91.         cout<<" ";
  92.     cout<<"▲"<<endl;
  93.     for(int i=0; i<=s[3]; i++)
  94.         cout<<" ";
  95.     cout<<"●"<<endl;
  96.     system("pause");
  97.     a++;
  98.     goto re;
  99.     return 0;
  100. }
複製代碼

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;
  8.     int money,money2,h;
  9.     int a[]{0,0,0,0};
  10.     string b[]{"◆","★","▲","●"};
  11.     re2:
  12.     system("cls");
  13.     cout<<"賽馬場"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     cout<<"◆"<<endl;
  16.     cout<<"★"<<endl;
  17.     cout<<"▲"<<endl;
  18.     cout<<"●"<<endl;
  19.     cout<<endl;
  20.     cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  21.     cout<<"(1)買入 (2)下注 (3)離開   請選擇:";
  22.     cin>>z;
  23.     if(z==1)
  24.     {

  25.         cout<<endl;
  26.         cout<<"買入: ";
  27.         cin>>money;
  28.         sum+=money;
  29.         goto re2;
  30.     }
  31.     else if(z==2&&sum>0)
  32.     {
  33.         cout<<endl;
  34.         cout<<"下注: ";
  35.         cin>>money2;
  36.         if(sum>=money2)
  37.         {
  38.             cout<<endl;
  39.             sum-=money2;
  40.             cout<<"下注幾號 <1>◆ <2>★ <3>▲ <4>● :";
  41.             cin>>h;
  42.             cout<<endl;
  43.             cout<<"比賽即將開始...";
  44.         }
  45.         else if(sum<money2)
  46.         {
  47.             cout<<"餘額不足請先買入"<<endl;
  48.             _sleep(1500);
  49.             goto re2;
  50.         }
  51.     }
  52.     else if(z==2&&sum<=0)
  53.     {
  54.         cout<<"餘額不足請先買入"<<endl;
  55.         _sleep(1500);
  56.         goto re2;
  57.     }
  58.     else if(z<=0||z>3)
  59.     {
  60.         cout<<"輸入錯誤 重新輸入";
  61.         _sleep(1500);
  62.         goto re2;
  63.     }
  64.     system("pause");
  65.     re:
  66.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73)
  67.     {
  68.         system("cls");
  69.         cout<<"比賽開始"<<endl;
  70.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  71.         for(int i=0; i<=3; i++)
  72.        {
  73.            x=rand()%5+1;
  74.            a[i]+=x;
  75.            }
  76.            for(int i=1; i<=a[0]; i++)
  77.                 cout<<" ";
  78.             cout<<"◆"<<endl;
  79.            for(int i=1; i<=a[1]; i++)
  80.                 cout<<" ";
  81.             cout<<"★"<<endl;
  82.            for(int i=1; i<=a[2]; i++)
  83.                 cout<<" ";
  84.             cout<<"▲"<<endl;
  85.            for(int i=1; i<=a[3]; i++)
  86.                 cout<<" ";
  87.             cout<<"●"<<endl;
  88.          _sleep(100);
  89.         goto re;

  90.     }
  91.     else
  92.     {
  93.         if(a[0]>=73){
  94.             y=0;
  95. }
  96.         if(a[1]>=73){
  97.             y=1;
  98. }
  99.         if(a[2]>=73){
  100.             y=2;
  101. }
  102.         if(a[3]>=73){
  103.             y=3;
  104. }
  105.         system("cls");
  106.         cout<<"比賽結束,由"<<b[y]<<"獲勝!!!"<<endl;
  107.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  108.            for(int i=1; i<=a[0]; i++)
  109.                 cout<<" ";
  110.             cout<<"◆"<<endl;
  111.            for(int i=1; i<=a[1]; i++)
  112.                 cout<<" ";
  113.             cout<<"★"<<endl;
  114.            for(int i=1; i<=a[2]; i++)
  115.                 cout<<" ";
  116.             cout<<"▲"<<endl;
  117.            for(int i=1; i<=a[3]; i++)
  118.                 cout<<" ";
  119.             cout<<"●"<<endl;
  120.     }
  121.     system("pause");
  122.     return 0;
  123. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int m1=0,m2=0,m3=0,c;
  8.     int x=1;
  9. re:
  10.     srand(time(NULL));
  11.     int n[]={0,0,0,0};
  12.     cout<<"「好事成雙」賽馬場第"<<x<<"局"<<endl;
  13.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  14.     string y[]={"◆","★","▲","●"};
  15.     cout<<endl<<endl;
  16. re2:
  17.     cout<<"可用餘額: "<<m1<<"元"<<endl;
  18.     int option;
  19.     cout<<"(1)買入 (2)下注 (3)離開  請選擇:"<<endl;
  20.     cin>>option;
  21.     if(option==1){
  22.         cout<<"買入:";
  23.         cin>>m2;
  24.         if(m2<=0){
  25.             cout<<"輸入錯誤"<<endl;
  26.             _sleep(1500);
  27.             goto re2;
  28.         }
  29.         else {
  30.         m1+=m2;
  31.         goto re2;
  32.         }
  33.     }
  34.     else if(option==2){
  35.         cout<<"下注:";
  36.         cin>>m3;

  37.         if(m3<=0){
  38.             cout<<"輸入錯誤"<<endl;
  39.             _sleep(1500);
  40.             goto re2;
  41.         }

  42.         else if(m1<m3){
  43.             cout<<"可用餘額不足,請先買入!"<<endl;
  44.             _sleep(1500);
  45.             goto re2;
  46.         }
  47.         else if(m1>=m3){
  48.             cout<<"下注幾號 <1>◆ <2>★ <3>▲ <4>● :";
  49.             cin>>c;
  50.             cout<<endl;
  51.             cout<<"比賽即將開始..."<<endl;
  52.         }
  53.     }
  54.     for(int i=0;i<=3;i++)
  55.         cout<<y[i]<<endl;
  56.     int r=0;
  57.     system("pause");
  58.     while(true){
  59.         system("cls");
  60.         r=rand()%4;
  61.         n[r]++;
  62.         cout<<"比賽進行中,第"<<x<<"局"<<endl;
  63.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  64.         for(int i=0;i<=n[0];i++)
  65.             cout<<" ";
  66.             cout<<"◆"<<endl;
  67.         for(int i=0;i<=n[1];i++)
  68.             cout<<" ";
  69.             cout<<"★"<<endl;
  70.         for(int i=0;i<=n[2];i++)
  71.             cout<<" ";
  72.             cout<<"▲"<<endl;
  73.         for(int i=0;i<=n[3];i++)
  74.             cout<<" ";
  75.             cout<<"●"<<endl;
  76.         if(n[r]==73)
  77.             break;

  78.         _sleep(1);

  79.     }system("cls");
  80.     cout<<"比賽結束由"<<y[r]<<"先馳得點!"<<endl;
  81.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  82.         for(int i=0;i<=n[0];i++)
  83.             cout<<" ";
  84.             cout<<"◆"<<endl;
  85.         for(int i=0;i<=n[1];i++)
  86.             cout<<" ";
  87.             cout<<"★"<<endl;
  88.         for(int i=0;i<=n[2];i++)
  89.             cout<<" ";
  90.             cout<<"▲"<<endl;
  91.         for(int i=0;i<=n[3];i++)
  92.             cout<<" ";
  93.             cout<<"●"<<endl;
  94.     system("pause");
  95.     x++;
  96.     system("cls");
  97.     goto re;
  98.     return 0;
  99. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a=1;
  8.     int sum=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<<"可用餘額:"<<sum<<"元"<<endl<<endl;
  21.         cout<<"(1)買入  (2)下注  (3)離開  請選擇:";
  22.         cin>>x;
  23.         if(x==1)
  24.         {
  25.             cout<<"買入: ";
  26.             cin>>money;
  27.             sum+=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.     }
  50.     while(true)
  51.     {
  52.         system("cls");
  53.         int r=rand()%4;
  54.         s[r]++;
  55.         cout<<"比賽進行中"<<endl;
  56.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  57.         for(int i=0; i<=s[0]; i++)
  58.             cout<<" ";
  59.         cout<<"◆"<<endl;
  60.         for(int i=0; i<=s[1]; i++)
  61.             cout<<" ";
  62.         cout<<"★"<<endl;
  63.         for(int i=0; i<=s[2]; i++)
  64.             cout<<" ";
  65.         cout<<"▲"<<endl;
  66.         for(int i=0; i<=s[3]; i++)
  67.             cout<<" ";
  68.         cout<<"●"<<endl;
  69.         if(s[r]==73)
  70.             break;
  71.         _sleep(0.00000001);
  72.     }
  73.     system("cls");
  74.     cout<<"比賽結束 ";
  75.     if(s[0]==73)
  76.         cout<<"由◆先馳得點!"<<endl;
  77.     if(s[1]==73)
  78.         cout<<"由★先馳得點!"<<endl;
  79.     if(s[2]==73)
  80.         cout<<"由▲先馳得點!"<<endl;
  81.     if(s[3]==73)
  82.         cout<<"由●先馳得點!"<<endl;
  83.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  84.     for(int i=0; i<=s[0]; i++)
  85.         cout<<" ";
  86.     cout<<"◆"<<endl;
  87.     for(int i=0; i<=s[1]; i++)
  88.         cout<<" ";
  89.     cout<<"★"<<endl;
  90.     for(int i=0; i<=s[2]; i++)
  91.         cout<<" ";
  92.     cout<<"▲"<<endl;
  93.     for(int i=0; i<=s[3]; i++)
  94.         cout<<" ";
  95.     cout<<"●"<<endl;
  96.     system("pause");
  97.     a++;
  98.     goto re;
  99.     return 0;
  100. }
複製代碼

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;
  8.     int a[]{0,0,0,0};
  9.     string b[]{"◆","★","▲","●"};
  10.     re2:
  11.     system("cls");
  12.     cout<<"空蕩蕩賽馬場"<<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.             cout<<"下注幾號 <1>◆ <2>★ <3>▲ <4>● :";
  40.             cin>>h;
  41.             cout<<endl;
  42.             cout<<"比賽即將開始...";
  43.         }
  44.         else if(sum<money2)
  45.         {
  46.             cout<<"餘額不足請先買入"<<endl;
  47.             _sleep(1500);
  48.             goto re2;
  49.         }
  50.     }
  51.     else if(z==2&&sum<=0)
  52.     {
  53.         cout<<"餘額不足請先買入"<<endl;
  54.         _sleep(1500);
  55.         goto re2;
  56.     }
  57.     else if(z<=0||z>3)
  58.     {
  59.         cout<<"輸入錯誤 重新輸入";
  60.         _sleep(1500);
  61.         goto re2;
  62.     }
  63.     system("pause");
  64.     re:
  65.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73)
  66.     {
  67.         system("cls");
  68.         cout<<"比賽開始"<<endl;
  69.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  70.         for(int i=0; i<=3; i++)
  71.        {
  72.            x=rand()%5+1;
  73.            a[i]+=x;
  74.            }
  75.            for(int i=1; i<=a[0]; i++)
  76.                 cout<<" ";
  77.             cout<<"◆"<<endl;
  78.            for(int i=1; i<=a[1]; i++)
  79.                 cout<<" ";
  80.             cout<<"★"<<endl;
  81.            for(int i=1; i<=a[2]; i++)
  82.                 cout<<" ";
  83.             cout<<"▲"<<endl;
  84.            for(int i=1; i<=a[3]; i++)
  85.                 cout<<" ";
  86.             cout<<"●"<<endl;
  87.          _sleep(100);
  88.         goto re;

  89.     }
  90.     else
  91.     {
  92.         if(a[0]>=73)
  93.             y=0;
  94.         if(a[1]>=73)
  95.             y=1;
  96.         if(a[2]>=73)
  97.             y=2;
  98.         if(a[3]>=73)
  99.             y=3;
  100.         system("cls");
  101.         cout<<"比賽結束由"<<b[y]<<"獲勝"<<endl;
  102.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  103.            for(int i=1; i<=a[0]; i++)
  104.                 cout<<" ";
  105.             cout<<"◆"<<endl;
  106.            for(int i=1; i<=a[1]; i++)
  107.                 cout<<" ";
  108.             cout<<"★"<<endl;
  109.            for(int i=1; i<=a[2]; i++)
  110.                 cout<<" ";
  111.             cout<<"▲"<<endl;
  112.            for(int i=1; i<=a[3]; i++)
  113.                 cout<<" ";
  114.             cout<<"●"<<endl;
  115.     }
  116.     system("pause");
  117.     return 0;
  118. }
複製代碼

TOP

返回列表