返回列表 發帖
  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;
  11.     cout<<"★"<<endl;
  12.     cout<<"▲"<<endl;
  13.     cout<<"●"<<endl;
  14.     system("pause");
  15.     while(true)
  16.     {
  17.         cout<<"比賽進行中"<<endl;
  18.         cout<<"-------------------------------------------------------------------------|終點"<<endl;
  19.         int r=rand()%4;
  20.         h[r]++;
  21.         for(int i=1;i<=h[0];i++)
  22.         {
  23.             cout<<" ";
  24.         }
  25.         cout<<"◆"<<endl;
  26.         for(int i=1;i<=h[1];i++)
  27.         {
  28.             cout<<" ";
  29.         }
  30.         cout<<"★"<<endl;
  31.         for(int i=1;i<=h[2];i++)
  32.         {
  33.             cout<<" ";
  34.         }
  35.         cout<<"▲"<<endl;
  36.         for(int i=1;i<=h[3];i++)
  37.         {
  38.             cout<<" ";
  39.         }
  40.         cout<<"●"<<endl;
  41.         if(h[r]==72)
  42.         {
  43.             break;
  44.         }
  45.         system("cls");
  46.     }
  47.     system("pause");
  48.     return 0;
  49. }
複製代碼

TOP

返回列表