返回列表 發帖
  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!=69 && b!=69 && c!=69&& d!=69)
  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

返回列表