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

TOP

返回列表