返回列表 發帖

賽馬程式 (四)

加入首頁選單, 新增買入的功能, 執行畫面如下:
可用餘額: 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 n=1,balance=0;
  7.     re1:
  8.     int a=0, b=0, c=0, d=0, r, option, buyin;
  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.     }
  27.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while(a!=75 && b!=75 && c!=75 && d!=75)
  31.     {
  32.         r=rand()%4;   //產生0~3之隨機亂數
  33.         if(r==0)
  34.             a++;
  35.         else if(r==1)
  36.             b++;
  37.         else if(r==2)
  38.             c++;
  39.         else
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  43.         for(int i=1; i<=a; i++)
  44.             cout<<" ";
  45.         cout<<"◆"<<endl;
  46.         for(int i=1; i<=b; i++)
  47.             cout<<" ";
  48.         cout<<"★"<<endl;
  49.         for(int i=1; i<=c; i++)
  50.             cout<<" ";
  51.         cout<<"▲"<<endl;
  52.         for(int i=1; i<=d; i++)
  53.             cout<<" ";
  54.         cout<<"●"<<endl;   
  55.         system("cls");      
  56.     }
  57.     cout<<"比賽結束! 由 ";
  58.     if(a==75)
  59.         cout<<"◆";
  60.     else if(b==75)
  61.         cout<<"★";
  62.     else if(c==75)
  63.         cout<<"▲";
  64.     else
  65.         cout<<"●";
  66.     cout<<" 先馳得點!"<<endl;
  67.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  68.     for(int i=1; i<=a; i++)
  69.         cout<<" ";
  70.     cout<<"◆"<<endl;
  71.     for(int i=1; i<=b; i++)
  72.         cout<<" ";
  73.     cout<<"★"<<endl;
  74.     for(int i=1; i<=c; i++)
  75.         cout<<" ";
  76.     cout<<"▲"<<endl;
  77.     for(int i=1; i<=d; i++)
  78.         cout<<" ";
  79.     cout<<"●"<<endl;
  80.     system("pause");
  81.     n++;
  82.     goto re1;
  83.     system("pause");
  84.     return 0;   
  85. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,balance=0;
  7.     re:
  8.     int a=0,b=0,c=0,d=0,r,option,buyin;
  9.    
  10.     cout<<"「好事成雙」賽馬場 第"<<n<<"局"<<endl;
  11.    
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.     cout<<endl;
  18.     cout<<"可用餘額:"<<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 re;
  27.     }
  28.     system("pause");
  29.     system("cls");
  30.     srand(time(NULL));
  31.    
  32.     while(a!=70 && b!=70 && c!=70&& d!=70)
  33.     {
  34.           cout<<"賽馬進行中"<<endl;
  35.           cout<<"------------------------------------------------------------------------| 終點"<<endl;         
  36.             r = rand()%4+1;
  37.             if(r==1)
  38.                 a++;  
  39.             if(r==2)
  40.                 b++;  
  41.             if(r==3)
  42.                 c++;  
  43.             if(r==4)
  44.                 d++;  
  45.                
  46.                  
  47.              for(int i=0;i<=a;i++)
  48.              {
  49.                   cout<<" ";
  50.              }
  51.              cout<<"◆"<<endl;
  52.              for(int i=0;i<=b;i++)
  53.              {
  54.                   cout<<" ";
  55.              }
  56.              cout<<"★"<<endl;
  57.              for(int i=0;i<=c;i++)
  58.              {
  59.                   cout<<" ";
  60.              }
  61.              cout<<"▲"<<endl;
  62.              for(int i=0;i<=d;i++)  
  63.              {     
  64.                    cout<<" ";
  65.              }
  66.              cout<<"●"<<endl;
  67.              system("cls");
  68.     }
  69.    
  70.      cout<<"賽馬結束"<<endl;
  71.      
  72.      cout<<"------------------------------------------------------------------------| 終點"<<endl;  
  73.          
  74.      for(int i=0;i<=a;i++)
  75.      {      
  76.              cout<<" ";
  77.      }
  78.      cout<<"◆"<<endl;
  79.      for(int i=0;i<=b;i++)
  80.      {        
  81.               cout<<" ";
  82.      }
  83.      cout<<"★"<<endl;
  84.      for(int i=0;i<=c;i++)
  85.      {
  86.               cout<<" ";
  87.      }
  88.      cout<<"▲"<<endl;
  89.      for(int i=0;i<=d;i++)
  90.      {     
  91.               cout<<" ";
  92.      }
  93.      cout<<"●"<<endl;
  94.      cout<<"------------------------------------------------------------------------| 終點"<<endl;
  95.      cout<<"由";
  96.      if(a==70)
  97.      {
  98.          cout<<"◆";   
  99.      }
  100.      else if(b==70)
  101.      {
  102.          cout<<"★";   
  103.      }
  104.      else if(c==70)
  105.      {
  106.          cout<<"▲";   
  107.      }
  108.      else if(d==70)
  109.      {
  110.          cout<<"●";   
  111.      }
  112.      cout<<"先馳得點"<<endl<<endl;
  113.    
  114.     system("pause");
  115.     system("cls");
  116.     n++ ;
  117.     goto re;
  118.     system("pause");
  119.     return 0;   
  120. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n=1 , money=0;
  8.     re1:
  9.     int r,option,buyin;
  10.     int space[4]={0,0,0,0};
  11.     string name[4]={"◆","★","▲","●"};
  12.     srand(time(NULL));
  13.     system("cls");
  14.     cout<<"[好棒棒]賭賽馬場"<<"第"<<n<<"局"<<endl;
  15.     cout<<"-------------------------------------|終點"<<endl;
  16.     cout<<"◆"<<endl;
  17.     cout<<"★"<<endl;
  18.     cout<<"▲"<<endl;
  19.     cout<<"●"<<endl;
  20.     cout<<"可用餘額"<<money<<"元"<<endl<<endl;
  21.     cout<<"(1)買入(2)下注(3)滾 ㊣㊣㊣ 請選擇:";
  22.     cin>>option;
  23.     if(option==1)
  24.     {
  25.         cout<<"買入: ";
  26.         cin>>buyin;
  27.         money=money+buyin;   
  28.         goto re1;
  29.     }   
  30.     system("pause");
  31.     while(true)
  32.     {
  33.         r=rand()%4;
  34.         space[r]++;
  35.         if(space[r]==34)
  36.           break;
  37.         cout<<"比賽進行中"<<endl;
  38.         cout<<"----------------------------------|終點"<<endl;
  39.         for(int j=0;j<space[0];j++)
  40.         cout<<" ";
  41.         cout<<"◆"<<endl;
  42.         for(int j=0;j<space[1];j++)
  43.         cout<<" ";
  44.         cout<<"★"<<endl;
  45.         for(int j=0;j<space[2];j++)
  46.         cout<<" ";
  47.         cout<<"▲"<<endl;
  48.         for(int j=0;j<space[3];j++)
  49.         cout<<" ";
  50.         cout<<"●"<<endl;
  51.         system("cls");
  52.    }
  53.         cout<<"比賽結束"<<endl;
  54.         cout<<"----------------------------------|終點"<<"由"<<name[r]<<"先馳得點"<<endl;
  55.         for(int j=0;j<space[0];j++)
  56.         cout<<" ";
  57.         cout<<"◆"<<endl;
  58.         for(int j=0;j<space[1];j++)
  59.         cout<<" ";
  60.         cout<<"★"<<endl;
  61.         for(int j=0;j<space[2];j++)
  62.         cout<<" ";
  63.         cout<<"▲"<<endl;
  64.         for(int j=0;j<space[3];j++)
  65.         cout<<" ";
  66.         cout<<"●"<<endl;
  67.         n++;
  68.         goto re1;
  69.         system("pause");
  70.         return 0;         
  71. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int n=1, money=0;
  7.    re:
  8.    int a=0, b=0, c=0, d=0, r, option, buyin;
  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<<"可用餘額:"<<money<<"元"<<endl<<endl;
  18.    cout<<"(1)買入 (2)下注 (3)離開"<<endl;
  19.    cin>>option;
  20.    if(option==1)
  21.    {
  22.       cout<<"買入:"<<endl;
  23.       cin>>buyin;
  24.       money+=buyin;
  25.       goto re;
  26.    }   
  27.    system("pause");
  28.    system("cls");
  29.    srand(time(NULL));
  30.    
  31.    while(a!=20 && b!=20 && c!=20 && d!=20)
  32.    {
  33.       cout<<"賽馬進行中..."<<endl;
  34.       cout<<"-------------------------------------------|終點"<<endl;
  35.         r = rand()%4+1;
  36.         if(r==1)
  37.            a++;
  38.         if(r==2)
  39.            b++;
  40.         if(r==3)
  41.            c++;
  42.         if(r==4)
  43.            d++;   
  44.       
  45.        for(int i=0;i<=a;i++)
  46.           cout<<"  ";
  47.        cout<<"◆"<<endl;
  48.        a++;
  49.        for(int i=0;i<=b;i++)
  50.           cout<<"  ";
  51.        cout<<"★"<<endl;
  52.        b++;
  53.        for(int i=0;i<=c;i++)
  54.           cout<<"  ";
  55.        cout<<"▲"<<endl;
  56.        c++;  
  57.        for(int i=0;i<=d;i++)
  58.           cout<<"  ";
  59.        cout<<"●"<<endl;
  60.        d++;
  61.        system("cls");
  62.       
  63.    }
  64.     cout<<"賽馬結束...!由 ";
  65.     if(a==20)
  66.        cout<<"◆";
  67.     else if(b==20)
  68.        cout<<"★";
  69.     else if(c==20)
  70.        cout<<"▲";
  71.     else
  72.        cout<<"●";
  73.     cout<<"先抵達終點!"<<endl;
  74.     cout<<"-------------------------------------------|終點"<<endl;
  75.        for(int i=0;i<=a;i++)
  76.           cout<<"  ";
  77.        cout<<"◆"<<endl;
  78.        a++;
  79.        for(int i=0;i<=b;i++)
  80.           cout<<"  ";
  81.        cout<<"★"<<endl;
  82.        b++;
  83.        for(int i=0;i<=c;i++)
  84.           cout<<"  ";
  85.        cout<<"▲"<<endl;
  86.        c++;  
  87.        for(int i=0;i<=d;i++)
  88.           cout<<"  ";
  89.        cout<<"●"<<endl;
  90.        d++;
  91.        system("pause");
  92.        n++;
  93.        goto re;
  94. system("pause");
  95. return 0;
  96. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int balance=0;
  7.     start:
  8.     srand(time(NULL));
  9.     int space[]={0,0,0,0};
  10.     int option, money;
  11.     system("cls");
  12.     cout<<"賽馬場"<<endl;
  13.     cout<<"------------------------------------------------------------------------------| 終點"<<endl;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  19.     cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  20.     cin>>option;
  21.    
  22.     if (option==1)
  23.     {    cout<<"買入: ";
  24.         cin>>money;
  25.         balance+=money;   //balance=balance+buyin
  26.         goto start;
  27.     }
  28.     system("pause");
  29.     while (true)
  30.     {
  31.           int r=rand()%4;
  32.           space[r]++;
  33.           if(space[r]==74)
  34.                break;
  35.           cout<<"比賽進行中"<<endl;
  36.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  37.              for(int i=0;i<=space[0];i++)
  38.              {
  39.                   cout<<" ";
  40.              }
  41.              cout<<"◆"<<endl;
  42.              for(int j=0;j<=space[1]; j++)
  43.              {
  44.                   cout<<" ";
  45.              }
  46.              cout<<"★"<<endl;
  47.              for(int j=0;j<=space[2];j++)
  48.              {
  49.                   cout<<" ";
  50.              }
  51.              cout<<"▲"<<endl;
  52.              for(int j=0;j<=space[3];j++)
  53.              {     
  54.                    cout<<" ";
  55.              }
  56.              cout<<"●"<<endl;
  57.              system("cls");
  58.      }
  59.          cout<<"比賽結束! 由 ";
  60.     if(space[0]==74)
  61.         cout<<"◆";
  62.     else if(space[1]==74)
  63.         cout<<"★";
  64.     else if(space[2]==74)
  65.         cout<<"▲";
  66.     else
  67.         cout<<"●";
  68.     cout<<" 先到達終點!"<<endl;

  69.            cout<<"比賽結束"<<endl;
  70.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  71.              for(int i=0;i<=space[0];i++)
  72.              {
  73.                   cout<<" ";
  74.              }
  75.              cout<<"◆"<<endl;
  76.              for(int j=0;j<=space[1]; j++)
  77.              {
  78.                   cout<<" ";
  79.              }
  80.              cout<<"★"<<endl;
  81.              for(int j=0;j<=space[2];j++)
  82.              {
  83.                   cout<<" ";
  84.              }
  85.              cout<<"▲"<<endl;
  86.              for(int j=0;j<=space[3];j++)
  87.              {     
  88.                    cout<<" ";
  89.              }
  90.              cout<<"●"<<endl;
  91.              system("pause");
  92.              goto start;
  93.     system("pause");
  94.     return 0;   
  95. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int n=1,balance=0;
  8.     re1:
  9.     int a=0, b=0, c=0, d=0, r,option,buy;
  10.     system("cls");
  11.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.    
  18.     cout<<endl;
  19.     cout<<"剩餘金額"<<balance<<"元"<<endl<<endl;
  20.     cout<<"(1)買入 (2)下注 (3)離開  選擇:"<<endl;
  21.     cin>>option;
  22.      if(option==1)
  23.     {   
  24.     cout<<"買入"<<endl;
  25.     cin>>buy;
  26.     balance+=buy;
  27.     goto re1;   
  28.     }
  29.     system("pause");
  30.     system("cls");
  31.     srand(time(NULL));
  32.     while(a!=60 && b!=60 && c!=60 && d!=60)
  33.     {
  34.     r=rand()%4;   
  35.       if(r==0)
  36.          a++;
  37.       else if(r==1)
  38.           b++;
  39.       else if(r==2)
  40.           c++;
  41.       else
  42.           d++;
  43.         cout<<"比賽進行中"<<endl;
  44.         cout<<"------------------------------------------------------------| 終點"<<endl;
  45.         
  46.       for(int i=1; i<=a; i++)
  47.          cout<<" ";
  48.          cout<<"◆"<<endl;
  49.          
  50.       for(int i=1; i<=b; i++)
  51.           cout<<" ";
  52.           cout<<"★"<<endl;
  53.         
  54.       for(int i=1; i<=c; i++)
  55.           cout<<" ";
  56.           cout<<"▲"<<endl;
  57.         
  58.       for(int i=1; i<=d; i++)
  59.          cout<<" ";
  60.          cout<<"●"<<endl;   
  61.         system("cls");      
  62.     }

  63.     cout<<"比賽結束";
  64.    
  65.     if(a==60)
  66.        cout<<"◆";
  67.     else if(b==60)
  68.        cout<<"★";
  69.     else if(c==60)
  70.         cout<<"▲";
  71.     else
  72.         cout<<"●";
  73.     cout<<" 先到了!"<<endl;
  74.   
  75.     cout<<"--------------------------------------------------------------| 終點"<<endl;
  76.     for(int i=1; i<=a; i++)
  77.         cout<<" ";
  78.     cout<<"◆"<<endl;
  79.    
  80.     for(int i=1; i<=b; i++)
  81.         cout<<" ";
  82.     cout<<"★"<<endl;
  83.    
  84.     for(int i=1; i<=c; i++)
  85.         cout<<" ";
  86.     cout<<"▲"<<endl;
  87.    
  88.     for(int i=1; i<=d; i++)
  89.         cout<<" ";
  90.     cout<<"●"<<endl;
  91.     system("pause");

  92.     n++;
  93.     goto re1;
  94.     system("pause");
  95.     return 0;   
  96. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=1 ,mony=0 ,many;
  7.     re:
  8.     int a=0 ,b=0 ,c=0 ,d=0 ,z;
  9.     string n[]={"◆","★","㊣","▼"};
  10.     srand(time(NULL));
  11.     cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
  12.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"㊣"<<endl;
  16.     cout<<"▼"<<endl<<endl;
  17.     cout<<"可用餘額:"<<mony<<"元"<<endl;
  18.     cout<<"(1)買入(2)下注(3)離開 請選擇:";
  19.     cin>>many;
  20.     if(many==1)
  21.     {
  22.         int tim;
  23.         cout<<"買入:";
  24.         cin>>tim;
  25.         mony=mony+tim;
  26.         system("cls");
  27.         goto re;
  28.     }else
  29.     {
  30.         cout<<"輸入錯誤";
  31.         system("cls");
  32.         goto re;
  33.     }
  34.     system("pause");
  35.     while(a!=70 && b!=70 && c!=70 && d!=70)
  36.     {
  37.                 cout<<"比賽中"<<endl;
  38.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  39.         z=rand()%4+1;
  40.         if(z==1)
  41.         {
  42.             a+=2;
  43.         }
  44.         if(z==2)
  45.         {
  46.             b+=2;
  47.         }
  48.         if(z==3)
  49.         {
  50.             c+=2;
  51.         }
  52.         if(z==4)
  53.         {
  54.             d+=2;
  55.         }
  56.         for(int i=0; i<=a; i++)
  57.         {
  58.             cout<<" ";
  59.         }
  60.         cout<<"◆"<<endl;
  61.         
  62.         for(int i=0; i<=b; i++)
  63.         {
  64.             cout<<" ";
  65.         }
  66.         cout<<"★"<<endl;
  67.         
  68.         for(int i=0; i<=c; i++)
  69.         {
  70.             cout<<" ";
  71.         }
  72.         cout<<"㊣"<<endl;
  73.         
  74.         for(int i=0; i<=d; i++)
  75.         {
  76.             cout<<" ";
  77.         }
  78.         cout<<"▼"<<endl;
  79.         
  80.         system("cls");
  81.     }
  82.    
  83.     cout<<"第"<<x<<"場比賽結束   由"<<n[z-1]<<"先馳得點!"<<endl;
  84.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  85.      for(int i=0; i<=a; i++)
  86.         {
  87.             cout<<" ";
  88.         }
  89.         cout<<"◆"<<endl;
  90.         
  91.         for(int i=0; i<=b; i++)
  92.         {
  93.             cout<<" ";
  94.         }
  95.         cout<<"★"<<endl;
  96.         
  97.         for(int i=0; i<=c; i++)
  98.         {
  99.             cout<<" ";
  100.         }
  101.         cout<<"㊣"<<endl;
  102.         
  103.         for(int i=0; i<=d; i++)
  104.         {
  105.             cout<<" ";
  106.         }
  107.         cout<<"▼"<<endl;
  108.         
  109.         cout<<"按任意鍵進行下一場比賽"<<endl;
  110.         system("pause");
  111.         system("cls");
  112.         x++;
  113.         goto re;
  114.     system("pause");
  115.     return 0;
  116. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,money=0;
  7.     re:
  8.     int a=0, b=0, c=0, d=0, r, option, buy;
  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<<"可用餘額: "<<money<<"元"<<endl<<endl;
  18.     cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  19.     cin>>option;
  20.     if(option==1)
  21.     {
  22.         cout<<"買入: ";
  23.         cin>>buy;
  24.         money+=buy;  
  25.         goto re;
  26.     }
  27.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while(a!=75 && b!=75 && c!=75 && d!=75)
  31.     {
  32.         r=rand()%4;   //產生0~3之隨機亂數
  33.         if(r==0)
  34.             a++;
  35.         else if(r==1)
  36.             b++;
  37.         else if(r==2)
  38.             c++;
  39.         else
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  43.         for(int i=1; i<=a; i++)
  44.             cout<<" ";
  45.         cout<<"◆"<<endl;
  46.         for(int i=1; i<=b; i++)
  47.             cout<<" ";
  48.         cout<<"★"<<endl;
  49.         for(int i=1; i<=c; i++)
  50.             cout<<" ";
  51.         cout<<"▲"<<endl;
  52.         for(int i=1; i<=d; i++)
  53.             cout<<" ";
  54.         cout<<"●"<<endl;   
  55.         system("cls");      
  56.     }
  57.     cout<<"比賽結束! 由 ";
  58.     if(a==75)
  59.         cout<<"◆";
  60.     else if(b==75)
  61.         cout<<"★";
  62.     else if(c==75)
  63.         cout<<"▲";
  64.     else
  65.         cout<<"●";
  66.     cout<<" 先馳得點!"<<endl;
  67.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  68.     for(int i=1; i<=a; i++)
  69.         cout<<" ";
  70.     cout<<"◆"<<endl;
  71.     for(int i=1; i<=b; i++)
  72.         cout<<" ";
  73.     cout<<"★"<<endl;
  74.     for(int i=1; i<=c; i++)
  75.         cout<<" ";
  76.     cout<<"▲"<<endl;
  77.     for(int i=1; i<=d; i++)
  78.         cout<<" ";
  79.     cout<<"●"<<endl;
  80.     system("pause");
  81.     n++;
  82.     goto re;
  83.     system("pause");
  84.     return 0;   
  85. }
複製代碼

TOP

返回列表