返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,r;
  7.     re:
  8.     int h[4]={0,0,0,0};
  9.     srand(time(NULL));
  10.     cout<<"「好事成雙」賽馬場,第"<<n<<"局"<<endl;
  11.     cout<<"-------------------------------------------------------------------------|終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"▲"<<endl;
  15.     cout<<"●"<<endl;
  16.     system("pause");
  17.     while(true)
  18.     {
  19.         cout<<"比賽進行中"<<endl;
  20.         cout<<"-------------------------------------------------------------------------|終點"<<endl;
  21.         r=rand()%4;
  22.         h[r]++;
  23.         for(int i=1;i<=h[0];i++)
  24.             cout<<" ";
  25.         cout<<"◆"<<endl;
  26.         for(int i=1;i<=h[1];i++)
  27.             cout<<" ";
  28.         cout<<"★"<<endl;
  29.         for(int i=1;i<=h[2];i++)
  30.            cout<<" ";
  31.         cout<<"▲"<<endl;
  32.         for(int i=1;i<=h[3];i++)
  33.             cout<<" ";
  34.         cout<<"●"<<endl;
  35.         if(h[r]==72)
  36.             break;
  37.         system("cls");
  38.     }
  39.    
  40.     system("cls");
  41.     cout<<"比賽結束";
  42.     if(r==0)
  43.         cout<<"由◆先抵達終點"<<endl;
  44.     if(r==1)
  45.         cout<<"由★先抵達終點"<<endl;
  46.     if(r==2)
  47.         cout<<"由▲先抵達終點"<<endl;
  48.     if(r==3)
  49.         cout<<"由●先抵達終點"<<endl;
  50.     cout<<"-------------------------------------------------------------------------|終點"<<endl;
  51.     for(int i=1;i<=h[0];i++)
  52.             cout<<" ";
  53.         cout<<"◆"<<endl;
  54.     for(int i=1;i<=h[1];i++)
  55.             cout<<" ";
  56.         cout<<"★"<<endl;
  57.     for(int i=1;i<=h[2];i++)
  58.             cout<<" ";
  59.         cout<<"▲"<<endl;
  60.     for(int i=1;i<=h[3];i++)
  61.             cout<<" ";
  62.         cout<<"●"<<endl;
  63.         system("pause");
  64.         system("cls");
  65.     n++;
  66.     goto re;
  67.     return 0;
  68. }
複製代碼

TOP

返回列表