返回列表 發帖
  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 x[]={0,0,0,0};     
  10.     string p[]={"◆","★","▲","●"};     
  11.     int y=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(x[y]<=73)      
  19.     {
  20.         y=rand()%4;   
  21.         x[y]++;   
  22.         cout<<"比賽進行中"<<endl;
  23.         cout<<"----------------------------------------------------------------------| 終點"<<endl;
  24.         for(int i=0; i<4; i++)
  25.         {
  26.             for(int j=0; j<x[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<x[i]; j++)
  39.             cout<<" ";
  40.         cout<<p[i]<<endl;
  41.     }
  42.     system("pause");
  43.     return 0;
  44. }
複製代碼

TOP

返回列表