返回列表 發帖
本帖最後由 陳宥霖 於 2023-3-12 22:03 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     system("cls");
  8.     srand(time(NULL));
  9.     int s[]={0,0,0,0};     
  10.     string p[]={"◆","★","▲","●"};     
  11.     int r=0;
  12.     cout<<"#好事成雙 見好就收# 賽馬場"<<endl;
  13.     cout<<"-----------------------------------------------------------------------| 終點"<<endl;
  14.     for(int i=0; i<4; i++)
  15.         cout<<p[i]<<endl;      
  16.     system("pause");
  17.     system("cls");      
  18.     while(s[r]<=70)      
  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.                 cout<<" ";        
  28.             cout<<p[i]<<endl;   
  29.         }
  30.         _sleep(25);
  31.         system("cls");
  32.         }
  33.     cout<<"比賽結束"<<endl;
  34.     cout<<"-----------------------------------------------------------------------| 終點"<<endl;
  35.     for(int i=0; i<4; i++)
  36.     {
  37.            
  38.     for(int j=0; j<s[i]; j++)
  39.         cout<<" ";
  40.         cout<<p[i]<<endl;
  41.     }
  42.     system("pause");
  43.     return 0;
  44. }
複製代碼

TOP

返回列表