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

TOP

返回列表