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

TOP

返回列表