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

TOP

返回列表