返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int r ;
  7.     srand(time(NULL));
  8.     int h[4] = {0,0,0,0};
  9.     cout<<"賽馬場"<<endl<<"----------------------------------------終點"<<endl;
  10.     cout<<"◆"<<endl<<"★"<<endl<<"▲"<<endl<<"●"<<endl;
  11.     system("pause");
  12.     system("cls");
  13.     while(true)   
  14.     {
  15.     cout<<"比賽中"<<endl<<"----------------------------------------終點"<<endl;   
  16.         r = rand()%4;
  17.         h[r]++;
  18.         for(int i=1;i<=h[0];i++)
  19.         {
  20.             cout<<" ";            
  21.         }
  22.         cout<<"◆"<<endl;
  23.         for(int i=1;i<=h[1];i++)
  24.         {
  25.             cout<<" ";            
  26.         }
  27.         cout<<"★"<<endl;for(int i=1;i<=h[2];i++)
  28.         {
  29.             cout<<" ";            
  30.         }
  31.         cout<<"▲"<<endl;for(int i=1;i<=h[3];i++)
  32.         {
  33.             cout<<" ";            
  34.         }
  35.         cout<<"●"<<endl;
  36.         if(h[r]>=40)
  37.             break;
  38.         _sleep(10);
  39.         system("cls");
  40.     }
  41.     system("pause");
  42.     return 0;
  43. }
複製代碼

TOP

返回列表