返回列表 發帖
本帖最後由 蔡沛倢 於 2023-7-7 21:01 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {   
  7.         re:
  8.     system("cls");
  9.     int a[]={0,0,0,0};
  10.     string e[]={"◆","★","▲","●"};
  11.     srand(time(NULL));
  12.     int b=0;
  13.     cout<<"****賽馬場****"<<endl;
  14.         cout<<"-------------------------------------------------------------------------|終點線"<<endl;
  15.         for(int i=0;i<=3;i++)
  16.     {
  17.        cout<<e[i]<<endl;
  18.     }
  19.         system("pause");
  20.     system("cls");
  21.         while(true)
  22.         {   
  23.             b=rand()%4;
  24.             a[b]++;
  25.                 cout<<"比賽進行中"<<endl;
  26.                 cout<<"-------------------------------------------------------------------------|終點線"<<endl;
  27.                
  28.                 for(int i=0;i<4;i++)
  29.                 {   
  30.             for(int j=0;j<=a[i];j++)
  31.             {
  32.                           cout<<" ";
  33.             }
  34.             cout<<e[i]<<endl;
  35.                 }
  36.                 if(a[b]==73)
  37.                 {
  38.                         break;
  39.                 }
  40.                 _sleep(50);
  41.                 system("cls");
  42.         }
  43.                 cout<<"!比賽結束!"<<endl;
  44.                 cout<<"-------------------------------------------------------------------------|終點線"<<endl;
  45.                 for(int i=0;i<4;i++)
  46.                 {   
  47.             for(int j=0;j<=a[i];j++)
  48.             {
  49.                           cout<<" ";
  50.             }
  51.             cout<<e[i]<<endl;
  52.                 }
  53.                
  54.         system("pause");
  55.         goto re;
  56.     return 0;
  57. }
複製代碼

TOP

返回列表