返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int space[]={0,0,0,0};
  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.           int r=rand()%4;
  18.           space[r]++;
  19.           if(space[r]==74)
  20.                break;
  21.           cout<<"比賽進行中"<<endl;
  22.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  23.              for(int i=0;i<=space[0];i++)
  24.              {
  25.                   cout<<" ";
  26.              }
  27.              cout<<"◆"<<endl;
  28.              for(int j=0;j<=space[1]; j++)
  29.              {
  30.                   cout<<" ";
  31.              }
  32.              cout<<"★"<<endl;
  33.              for(int j=0;j<=space[2];j++)
  34.              {
  35.                   cout<<" ";
  36.              }
  37.              cout<<"▲"<<endl;
  38.              for(int j=0;j<=space[3];j++)
  39.              {     
  40.                    cout<<" ";
  41.              }
  42.              cout<<"●"<<endl;
  43.              system("cls");
  44.      }
  45.           cout<<"比賽結束"<<endl;
  46.           cout<<"--------------------------------------------------------------------------| 終點"<<endl;
  47.              for(int i=0;i<=space[0];i++)
  48.              {
  49.                   cout<<" ";
  50.              }
  51.              cout<<"◆"<<endl;
  52.              for(int j=0;j<=space[1]; j++)
  53.              {
  54.                   cout<<" ";
  55.              }
  56.              cout<<"★"<<endl;
  57.              for(int j=0;j<=space[2];j++)
  58.              {
  59.                   cout<<" ";
  60.              }
  61.              cout<<"▲"<<endl;
  62.              for(int j=0;j<=space[3];j++)
  63.              {     
  64.                    cout<<" ";
  65.              }
  66.              cout<<"●"<<endl;
  67.     system("pause");
  68.     return 0;   
  69. }
複製代碼

TOP

返回列表