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

TOP

返回列表