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

TOP

返回列表