返回列表 發帖
本帖最後由 盧玄皓 於 2023-7-7 19:54 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     system("cls");      
  9.     int s[]={0,0,0,0};   
  10.     srand(time(NULL));
  11.     cout<<"賽馬場"<<endl;
  12.      cout<<"------------------------------------------------------------------------| 終點"<<endl;
  13.       cout<<"○"<<endl;
  14.     cout<<"€"<<endl;
  15.     cout<<"§"<<endl;
  16.     cout<<"◎"<<endl;
  17.     system("pause");
  18.       while(true)
  19.     {
  20.       system("cls");   
  21.         int r=rand()%4;   
  22.         s[r]++;      
  23.         cout<<"比賽"<<endl;
  24.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;  
  25.      
  26.      for(int i=0; i<=s[0]; i++)
  27.         cout<<" ";
  28.     cout<<"○"<<endl;
  29.     for(int i=0; i<=s[1]; i++)
  30.         cout<<" ";
  31.     cout<<"€"<<endl;
  32.     for(int i=0; i<=s[2]; i++)
  33.         cout<<" ";
  34.     cout<<"§"<<endl;
  35.     for(int i=0; i<=s[3]; i++)
  36.         cout<<" ";
  37.     cout<<"◎"<<endl;
  38.      if(s[r]==73)
  39.             break;
  40.         _sleep(50);  
  41.     }
  42.     system("cls");
  43.     cout<<"比賽結束"<<endl;
  44.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  45.    
  46.     for(int i=0; i<=s[0]; i++)
  47.         cout<<" ";
  48.     cout<<"○"<<endl;
  49.     for(int i=0; i<=s[1]; i++)
  50.         cout<<" ";
  51.     cout<<"€"<<endl;
  52.     for(int i=0; i<=s[2]; i++)
  53.         cout<<" ";
  54.     cout<<"§"<<endl;
  55.     for(int i=0; i<=s[3]; i++)
  56.         cout<<" ";
  57.     cout<<"●"<<endl;
  58.    
  59.    
  60.     system("pause");
  61.    
  62.     goto re;
  63.     return 0;
  64. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     system("cls");      
  9.     int s[]={0,0,0,0};   
  10.    string p[]={"○","€","§","◎"};
  11.     srand(time(NULL));
  12.     cout<<"賽馬場"<<endl;
  13.      cout<<"------------------------------------------------------------------------| 終點"<<endl;
  14.        for(int i=0; i<4; i++)
  15.         {     
  16.             cout<<p[i]<<endl;        
  17.         }
  18.     system("pause");
  19.       while(true)
  20.     {
  21.       system("cls");   
  22.         int r=rand()%4;   
  23.         s[r]++;      
  24.         cout<<"比賽"<<endl;
  25.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;  
  26.      
  27.       for(int i=0; i<4; i++)
  28.     {
  29.            
  30.         for(int j=0; j<s[i]; j++)
  31.             cout<<" ";
  32.         cout<<p[i]<<endl;
  33.     }
  34.      if(s[r]==73)
  35.             break;
  36.         _sleep(1);  
  37.     }
  38.     system("cls");
  39.     cout<<"比賽結束"<<endl;
  40.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  41.    
  42.      for(int i=0; i<4; i++)
  43.     {
  44.            
  45.         for(int j=0; j<s[i]; j++)
  46.             cout<<" ";
  47.         cout<<p[i]<<endl;
  48.     }
  49.    
  50.    
  51.     system("pause");
  52.    
  53.     goto re;
  54.     return 0;
  55. }
  56.      
  57.      
  58.      
  59.      
複製代碼

TOP

返回列表