返回列表 發帖
  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.     re:
  13.     cout<<"「壞事成三」賽馬場"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     for(int i=0; i<4; i++)
  16.         cout<<p[i]<<endl;      
  17.     system("pause");
  18.     system("cls");      
  19.     while(x[y]<=73)      
  20.     {
  21.         y=rand()%4;   
  22.         x[y]++;   
  23.         cout<<"比賽進行中"<<endl;
  24.         cout<<"----------------------------------------------------------------------| 終點"<<endl;
  25.         for(int i=0; i<4; i++)
  26.         {
  27.             for(int j=0; j<x[i]; j++)
  28.                 cout<<" ";        
  29.             cout<<p[i]<<endl;   
  30.         }
  31.         _sleep(25);
  32.         system("cls");
  33.     }
  34.     cout<<"比賽結束"<<endl;
  35.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  36.     for(int i=0; i<4; i++)
  37.     {
  38.            
  39.         for(int j=0; j<x[i]; j++)
  40.             cout<<" ";
  41.         cout<<p[i]<<endl;
  42.     }
  43.     goto re;
  44.     system("pause");
  45.     return 0;
  46. }
複製代碼

TOP

返回列表