返回列表 發帖

賽馬程式 (二)

本帖最後由 陳品肇 於 2019-4-20 14:37 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r; //r 我隨機挑到馬匹
  8.     cout<<"「好事成雙」賽馬場"<<endl;
  9.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     system("cls"); //清空畫面
  16.     srand(time(NULL)); //撒亂樹種子
  17.    
  18.     while(a!=70 && b!=70 && c!=70&& d!=70) //判斷四隻馬只要有一隻到終點就跳離while
  19.     {
  20.           cout<<"賽馬進行中"<<endl;
  21.           cout<<"------------------------------------------------------------------------| 終點"<<endl;         
  22.             r = rand()%4+1;  //產生1~4亂數  隨機挑馬1~4其中一隻
  23.             if(r==1)
  24.                 a++;  
  25.             if(r==2)
  26.                 b++;  
  27.             if(r==3)
  28.                 c++;  
  29.             if(r==4)
  30.                 d++;  
  31.                
  32.                  
  33.              for(int i=0;i<=a;i++)  //第一匹馬前進
  34.              {
  35.                   cout<<" ";
  36.              }
  37.              cout<<"◆"<<endl;
  38.              for(int i=0;i<=b;i++)  //第二匹馬前進
  39.              {
  40.                   cout<<" ";
  41.              }
  42.              cout<<"★"<<endl;
  43.              for(int i=0;i<=c;i++)  //第三匹馬前進
  44.              {
  45.                   cout<<" ";
  46.              }
  47.              cout<<"▲"<<endl;
  48.              for(int i=0;i<=d;i++)  //第四匹馬前進
  49.              {     
  50.                    cout<<" ";
  51.              }
  52.              cout<<"●"<<endl;
  53.              system("cls"); //清空畫面
  54.     }
  55.    
  56.      cout<<"賽馬結束"<<endl;
  57.      cout<<"------------------------------------------------------------------------| 終點"<<endl;      
  58.      for(int i=0;i<=a;i++)  //第一匹馬最後的位子
  59.      {      
  60.              cout<<" ";
  61.      }
  62.      cout<<"◆"<<endl;
  63.      for(int i=0;i<=b;i++)  //第二匹馬最後的位子
  64.      {        
  65.               cout<<" ";
  66.      }
  67.      cout<<"★"<<endl;
  68.      for(int i=0;i<=c;i++)  //第三匹馬最後的位子
  69.      {
  70.               cout<<" ";
  71.      }
  72.      cout<<"▲"<<endl;
  73.      for(int i=0;i<=d;i++)  //第四匹馬最後的位子
  74.      {     
  75.               cout<<" ";
  76.      }
  77.      cout<<"●"<<endl;
  78.    
  79.     system("pause");
  80.     system("cls");
  81.     goto re;
  82.     system("pause");
  83.     return 0;   
  84. }
複製代碼

本帖最後由 章幼莛 於 2019-4-20 14:42 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,h;
  8.     cout<<"「好事成雙」賽馬場"<<endl;
  9.     cout<<"|--------------------------------------------------|"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));
  17.    
  18.     while(a!=50 && b!=50 && c!=50 && d!=50)
  19.     {
  20.           cout<<"賽馬進行中"<<endl;
  21.           cout<<"|--------------------------------------------------|"<<endl;
  22.           h = rand()%4+1;
  23.           if(h==1)
  24.              a++;
  25.           if(h==2)
  26.              b++;
  27.           if(h==3)
  28.              c++;
  29.           if(h==4)
  30.              d++;
  31.             
  32.           for(int i=0;i<=a;i++)
  33.           {
  34.                   cout<<" ";
  35.           }
  36.           cout<<"◆"<<endl;
  37.           for(int i=0;i<=b;i++)
  38.           {
  39.                   cout<<" ";
  40.           }
  41.           cout<<"★"<<endl;
  42.           for(int i=0;i<=c;i++)
  43.           {
  44.                   cout<<" ";
  45.           }
  46.           cout<<"▲"<<endl;
  47.           for(int i=0;i<=d;i++)
  48.           {
  49.                   cout<<" ";
  50.           }
  51.           cout<<"●"<<endl;
  52.           system("cls");
  53.     }
  54.     cout<<"比賽結束"<<endl;
  55.     cout<<"|--------------------------------------------------|"<<endl;
  56.     for(int i=0;i<=a;i++)
  57.     {
  58.         cout<<" ";
  59.     }
  60.     cout<<"◆"<<endl;
  61.     for(int i=0;i<=b;i++)
  62.     {
  63.         cout<<" ";
  64.     }
  65.     cout<<"★"<<endl;
  66.     for(int i=0;i<=c;i++)
  67.     {
  68.         cout<<" ";
  69.     }
  70.     cout<<"▲"<<endl;
  71.     for(int i=0;i<=d;i++)
  72.     {     
  73.         cout<<" ";
  74.     }
  75.     cout<<"●"<<endl;
  76.     system("pause");
  77.     system("cls");
  78.     goto re;
  79.    
  80.     system("pause");
  81.     return 0;
  82. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r;
  8.     cout<<"「好事成雙」賽馬場"<<endl;
  9.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));
  17.     while(a!=70 && b!=70 && c!=70 && d!=70)
  18.     {
  19.         cout<<"賽馬進行中"<<endl;
  20.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  21.         r=rand()%4+1;
  22.         if(r==1)
  23.         {
  24.             a++;        
  25.         }
  26.         if(r==2)
  27.         {
  28.             b++;        
  29.         }
  30.         if(r==3)
  31.         {
  32.             c++;        
  33.         }
  34.         if(r==4)
  35.         {
  36.             d++;        
  37.         }
  38.         for(int i=0;i<=a;i++)
  39.         {
  40.             cout<<" ";        
  41.         }
  42.         cout<<"◆"<<endl;
  43.         for(int i=0;i<=b;i++)
  44.         {
  45.             cout<<" ";        
  46.         }
  47.         cout<<"★"<<endl;
  48.         for(int i=0;i<=c;i++)
  49.         {
  50.             cout<<" ";        
  51.         }
  52.         cout<<"▲"<<endl;
  53.         for(int i=0;i<=d;i++)
  54.         {
  55.             cout<<" ";        
  56.         }
  57.         cout<<"●"<<endl;
  58.         system("cls");            
  59.     }
  60.     cout<<"比賽結束"<<endl;
  61.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  62.     for(int i=0;i<=a;i++)
  63.     {
  64.         cout<<" ";        
  65.     }
  66.     cout<<"◆"<<endl;
  67.     for(int i=0;i<=b;i++)
  68.     {
  69.         cout<<" ";        
  70.     }
  71.     cout<<"★"<<endl;
  72.     for(int i=0;i<=c;i++)
  73.     {
  74.         cout<<" ";        
  75.     }
  76.     cout<<"▲"<<endl;
  77.     for(int i=0;i<=d;i++)
  78.     {
  79.         cout<<" ";        
  80.     }
  81.     cout<<"●"<<endl;
  82.     system("pause");
  83.     system("cls");
  84.     goto re;
  85.     system("pause");
  86.     return 0;   
  87. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r;
  8.     cout<<"㊣$賽馬場$㊣"<<endl;
  9.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));
  17.    
  18.    
  19.     while(a!=70&&b!=70&&c!=70&&d!=70 )
  20.     {
  21.         cout<<"賽馬進行中"<<endl;
  22.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  23.         r=rand()%4+1;
  24.         if(r==1)
  25.             a++;
  26.         if(r==2)
  27.             b++;      
  28.         if(r==3)
  29.             c++;
  30.         if(r==4)
  31.             d++;
  32.             
  33.             
  34.         for(int i=0;i<a;i++)
  35.         {
  36.             cout<<" ";
  37.         }
  38.         cout<<"◆"<<endl;
  39.         for(int i=0;i<b;i++)
  40.         {
  41.             cout<<" ";
  42.         }
  43.         cout<<"★"<<endl;
  44.         for(int i=0;i<c;i++)
  45.         {
  46.             cout<<" ";
  47.         }
  48.         cout<<"▲"<<endl;
  49.         for(int i=0;i<d;i++)
  50.         {
  51.             cout<<" ";
  52.         }
  53.         cout<<"●"<<endl;
  54.         system("cls");        
  55.     }
  56.    
  57.    
  58.         cout<<"賽馬結束"<<endl;
  59.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  60.         for(int i=0;i<a;i++)
  61.         {
  62.             cout<<" ";
  63.         }
  64.         cout<<"◆"<<endl;
  65.         for(int i=0;i<b;i++)
  66.         {
  67.             cout<<" ";
  68.         }
  69.         cout<<"★"<<endl;
  70.         for(int i=0;i<c;i++)
  71.         {
  72.             cout<<" ";
  73.         }
  74.         cout<<"▲"<<endl;
  75.         for(int i=0;i<d;i++)
  76.         {
  77.             cout<<" ";
  78.         }
  79.         cout<<"●"<<endl;
  80.         
  81.         
  82.     system("pause");
  83.     system("cls");
  84.     goto re;
  85.     system("pause");
  86.     return 0;
  87. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     jeb_:
  7.     int a=0,b=0,c=0,d=0,r;
  8.     cout<<"好事成雙賽馬場"<<endl;
  9.     cout<<"--------------------------------------------|終點 "<<endl;
  10.     cout<<"+"<<endl;
  11.     cout<<"◇"<<endl;
  12.     cout<<"≒"<<endl;
  13.     cout<<"★"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));
  17.     while(a!=42 && b!=42 && c!=42 && d!=42)
  18.     {
  19.          cout<<"賽馬進行中"<<endl;
  20.          cout<<"--------------------------------------------|終點 "<<endl;
  21.          r =rand()%4+1;
  22.          if(r==1)
  23.             a++;
  24.          if(r==2)
  25.             b++;
  26.          if(r==3)
  27.             c++;
  28.          if(r==4)
  29.             d++;
  30.          for(int i=0;i<=a;i++)
  31.          {
  32.             cout<<" ";
  33.          }
  34.            cout<<"+"<<endl;
  35.          for(int i=0;i<=b;i++)  //第一匹馬前進
  36.          {
  37.          cout<<" ";
  38.          }
  39.            cout<<"◇"<<endl;
  40.          for(int i=0;i<=c;i++)  //第一匹馬前進
  41.          {
  42.          cout<<" ";
  43.          }
  44.            cout<<"≒"<<endl;
  45.          for(int i=0;i<=d;i++)  //第一匹馬前進
  46.          {
  47.          cout<<" ";
  48.          }
  49.            cout<<"★"<<endl;
  50.     system ("cls");
  51.    
  52.     }
  53.     cout<<"賽馬結束"<<endl;
  54.     cout<<"--------------------------------------------|終點 "<<endl;
  55.     for(int i=0;i<=a;i++)  //第一匹馬最後的位子
  56.      {      
  57.              cout<<" ";
  58.      }
  59.        cout<<"+"<<endl;
  60.     for(int i=0;i<=b;i++)  //第一匹馬最後的位子
  61.      {      
  62.              cout<<" ";
  63.      }
  64.        cout<<"◇"<<endl;
  65.     for(int i=0;i<=c;i++)  //第一匹馬最後的位子
  66.      {      
  67.              cout<<" ";
  68.      }
  69.        cout<<"≒"<<endl;
  70.      for(int i=0;i<=d;i++)  //第一匹馬最後的位子
  71.      {      
  72.              cout<<" ";
  73.      }
  74.        cout<<"★"<<endl;
  75.     system("pause");   
  76.     system("cls");
  77.     goto jeb_;           
  78.     system("pause");
  79.     return 0;   
  80. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r;  
  8.     cout<<"「好事成雙」賽馬場"<<endl;
  9.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));  
  17.    
  18.     while(a!=70 && b!=70 && c!=70&& d!=70)
  19.     {
  20.           cout<<"賽馬進行中"<<endl;
  21.           cout<<"------------------------------------------------------------------------| 終點"<<endl;         
  22.             r = rand()%4+1;  
  23.             if(r==1)
  24.                 a++;  
  25.             if(r==2)
  26.                 b++;  
  27.             if(r==3)
  28.                 c++;  
  29.             if(r==4)
  30.                 d++;  
  31.                
  32.                  
  33.              for(int i=0;i<=a;i++)  
  34.              {
  35.                   cout<<" ";
  36.              }
  37.              cout<<"◆"<<endl;
  38.              for(int i=0;i<=b;i++)  
  39.              {
  40.                   cout<<" ";
  41.              }
  42.              cout<<"★"<<endl;
  43.              for(int i=0;i<=c;i++)   
  44.              {
  45.                   cout<<" ";
  46.              }
  47.              cout<<"▲"<<endl;
  48.              for(int i=0;i<=d;i++)  
  49.              {     
  50.                    cout<<" ";
  51.              }
  52.              cout<<"●"<<endl;
  53.              system("cls");
  54.     }
  55.    
  56.      cout<<"賽馬結束"<<endl;
  57.      cout<<"------------------------------------------------------------------------| 終點"<<endl;      
  58.      for(int i=0;i<=a;i++)  
  59.      {      
  60.              cout<<" ";
  61.      }
  62.      cout<<"◆"<<endl;
  63.      for(int i=0;i<=b;i++)   
  64.      {        
  65.               cout<<" ";
  66.      }
  67.      cout<<"★"<<endl;
  68.      for(int i=0;i<=c;i++)  
  69.      {
  70.               cout<<" ";
  71.      }
  72.      cout<<"▲"<<endl;
  73.      for(int i=0;i<=d;i++)
  74.      {  
  75.               cout<<" ";
  76.      }
  77.       cout<<"●"<<endl;
  78.    
  79.     system("pause");
  80.     system("cls");
  81.     goto re;
  82.     system("pause");
  83.     return 0;   
  84. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r;
  8.     cout<<"賽馬場"<<endl;
  9.     cout<<"--------------------------------------------------------------------|終點"<<endl;
  10.    
  11.     cout<<"◆"<<endl;
  12.     cout<<"★"<<endl;
  13.     cout<<"▲"<<endl;
  14.     cout<<"●"<<endl;
  15.     system("pause");
  16.     system("cls");
  17.    
  18.     srand(time(NULL));
  19.    
  20.     while(a!=70 && b!=70 && c!=70 && d!=70)
  21.       {
  22.      cout<<"起跑嘍~~~~~"<<endl;
  23.      cout<<"------------------------------------------------------------------------| 終點"<<endl;         
  24.      
  25.       r = rand()%4+1;   
  26.             if(r==1)
  27.                 a++;  
  28.             if(r==2)
  29.                 b++;  
  30.             if(r==3)
  31.                 c++;  
  32.             if(r==4)
  33.                 d++;
  34.                
  35.              for(int i=0;i<=a;i++)  
  36.              {
  37.                   cout<<" ";
  38.              }
  39.              cout<<"◆"<<endl;
  40.              for(int i=0;i<=b;i++)
  41.              {  
  42.                   cout<<" ";
  43.              }
  44.              cout<<"★"<<endl;
  45.             
  46.              for(int i=0;i<=c;i++)
  47.              {  
  48.                   cout<<" ";
  49.              }
  50.              cout<<"▲"<<endl;
  51.              for(int i=0;i<=d;i++)  
  52.              {     
  53.                    cout<<" ";
  54.              }
  55.              cout<<"●"<<endl;
  56.              system("cls");
  57.       }
  58.       
  59.       cout<<"比賽結束"<<endl;
  60.      cout<<"------------------------------------------------------------------------| 終點"<<endl;      
  61.       
  62.       for(int i=0;i<=a;i++)
  63.       {
  64.               cout<<" ";
  65.       }
  66.       cout<<"◆"<<endl;
  67.       for(int i=0;i<=b;i++)
  68.       {
  69.               cout<<" ";
  70.       }
  71.       cout<<"★"<<endl;
  72.       for(int i=0;i<=c;i++)
  73.       {
  74.               cout<<" ";
  75.       }
  76.       cout<<"▲"<<endl;
  77.       for(int i=0;i<=d;i++)
  78.       {
  79.               cout<<" ";
  80.       }
  81.       cout<<"●"<<endl;
  82.       system("pause");
  83.       system("cls");
  84.       goto re;
  85.    
  86.     system("pause");
  87.     return 0;
  88. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r;
  8.     cout<<"賽~馬~"<<endl;
  9.     cout<<"|起點|--------------------------------------------------------------|終點|"<<endl;
  10.     cout<<"★"<<endl;
  11.     cout<<"㊣"<<endl;
  12.     cout<<"▽"<<endl;
  13.     cout<<"◆"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));
  17.     while(a!=70 && b!=70 && c!=70 && d!=70)
  18.     {
  19.         cout<<"~賽馬進行中~"<<endl;
  20.         cout<<"|起點|--------------------------------------------------------------|終點|"<<endl;        
  21.         r=rand()%4;
  22.         if(r==0)
  23.         {
  24.             a++;
  25.         }
  26.         if(r==1)
  27.         {
  28.             b++;
  29.         }
  30.         if(r==2)
  31.         {
  32.             c++;
  33.         }
  34.         if(r==3)
  35.         {
  36.             d++;
  37.         }
  38.         for(int i=0;i<=a;i++)
  39.         {
  40.             cout<<" ";
  41.         }
  42.             cout<<"★"<<endl;
  43.         for(int i=0;i<=b;i++)
  44.         {
  45.             cout<<" ";
  46.         }
  47.             cout<<"㊣"<<endl;
  48.         for(int i=0;i<=c;i++)
  49.         {
  50.             cout<<" ";
  51.         }
  52.             cout<<"▽"<<endl;
  53.         for(int i=0;i<=d;i++)
  54.         {
  55.             cout<<" ";
  56.         }
  57.             cout<<"◆"<<endl;
  58.         system("cls");
  59.     }
  60.     cout<<"~比賽結束~"<<endl;
  61.     cout<<"|起點|--------------------------------------------------------------|終點|"<<endl;
  62.     for(int i=0;i<=a;i++)
  63.         {
  64.             cout<<" ";
  65.         }
  66.             cout<<"★"<<endl;
  67.         for(int i=0;i<=b;i++)
  68.         {
  69.             cout<<" ";
  70.         }
  71.             cout<<"㊣"<<endl;
  72.         for(int i=0;i<=c;i++)
  73.         {
  74.             cout<<" ";
  75.         }
  76.             cout<<"▽"<<endl;
  77.         for(int i=0;i<=d;i++)
  78.         {
  79.             cout<<" ";
  80.         }
  81.             cout<<"◆"<<endl;
  82.         system("pause");
  83.         system("cls");
  84.         goto re;
  85.     system("pause");
  86.     return 0;
  87. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a=0,b=0,c=0,d=0,r;
  8.     cout<<"好事成雙賽馬場"<<endl;
  9.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;   
  14.     system("pause");
  15.     system("cls");
  16.     srand(time(NULL));
  17.     while(a!=70 && b!=70 && c!=70 && d!=70)
  18.     {
  19.           cout<<"比賽進行中"<<endl;
  20.           cout<<"------------------------------------------------------------------------| 終點"<<endl;
  21.           r=rand()%4+1;
  22.           if(r==1)
  23.           {
  24.                 a++;
  25.           }
  26.           if(r==2)
  27.           {
  28.                 b++;
  29.           }         
  30.           if(r==3)
  31.           {
  32.                 c++;
  33.           }         
  34.           if(r==4)
  35.           {
  36.                 d++;
  37.           }
  38.           for(int i=0;i<=a;i++)
  39.           {
  40.                 cout<<" ";
  41.           }
  42.           cout<<"◆"<<endl;
  43.           for(int i=0;i<=b;i++)
  44.           {
  45.                 cout<<" ";
  46.           }
  47.           cout<<"★"<<endl;
  48.           for(int i=0;i<=c;i++)
  49.           {
  50.                 cout<<" ";
  51.           }
  52.           cout<<"▲"<<endl;
  53.           for(int i=0;i<=d;i++)
  54.           {
  55.                 cout<<" ";
  56.           }
  57.           cout<<"●"<<endl;
  58.           system("cls");                  
  59.     }
  60.     cout<<"比賽結束"<<endl;
  61.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  62.     for(int i=0;i<=a;i++)
  63.     {
  64.           cout<<" ";
  65.     }
  66.     cout<<"◆"<<endl;
  67.     for(int i=0;i<=b;i++)
  68.     {
  69.           cout<<" ";
  70.     }
  71.     cout<<"★"<<endl;
  72.     for(int i=0;i<=c;i++)
  73.     {
  74.           cout<<" ";
  75.     }
  76.     cout<<"▲"<<endl;
  77.     for(int i=0;i<=d;i++)
  78.     {
  79.           cout<<" ";
  80.     }
  81.     cout<<"●"<<endl;
  82.     system("pause");
  83.     system("cls");
  84.     goto re;
  85.     system("pause");
  86.     return 0;
  87. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     int b[4]={0,0,0,0};
  8.     cout<<"好事成雙 賽馬場"<<endl;
  9.     cout<<"--------------------------------------"<<endl;
  10.     cout<<"*"<<endl;
  11.     cout<<"+"<<endl;
  12.     cout<<"0"<<endl;
  13.     cout<<"?"<<endl;
  14.     system("pause");   
  15.     while(true)
  16.     {
  17.      
  18.      srand(time(NULL));
  19.      a==rand();
  20.      b[a]++;
  21.     cout<<"好事成雙 進行中"<<endl;
  22.     cout<<"--------------------------------------"<<endl;
  23.    
  24.     for(int i=0;i<=b{0};i++)
  25.     {cout<<" ";
  26.     }
  27.     cout<<"*"<<endl;
  28.      for(int i=0;i<=b{1};i++)
  29.     {cout<<" ";
  30.     }
  31.     cout<<"+"<<endl;
  32.      for(int i=0;i<=b{2};i++)
  33.     {cout<<" ";
  34.     }
  35.     cout<<"0"<<endl;
  36.      for(int i=0;i<=b{3};i++)
  37.     {cout<<" ";
  38.     }
  39.     cout<<"?"<<endl;
  40.                
  41.     }
  42.    
  43.    
  44.    
  45.    
  46.    
  47.     system("pause");
  48.     return 0;
  49. }
複製代碼

TOP

返回列表