返回列表 發帖
本帖最後由 林少謙 於 2024-7-27 16:09 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x,y,t=1;
  8.     re2:
  9.     int a[]{0,0,0,0};
  10.     string b[]{"◆","★","▲","●"};
  11.     cout<<"空蕩蕩賽馬場  第"<<t<<"場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.     system("pause");
  18.     re:
  19.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73)
  20.     {
  21.         system("cls");
  22.         cout<<"比賽開始"<<endl;
  23.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  24.         for(int i=0; i<=3; i++)
  25.        {
  26.            x=rand()%5+1;
  27.            a[i]+=x;
  28.            }
  29.            for(int i=1; i<=a[0]; i++)
  30.                 cout<<" ";
  31.             cout<<"◆"<<endl;
  32.            for(int i=1; i<=a[1]; i++)
  33.                 cout<<" ";
  34.             cout<<"★"<<endl;
  35.            for(int i=1; i<=a[2]; i++)
  36.                 cout<<" ";
  37.             cout<<"▲"<<endl;
  38.            for(int i=1; i<=a[3]; i++)
  39.                 cout<<" ";
  40.             cout<<"●"<<endl;
  41.          _sleep(100);
  42.         goto re;

  43.     }
  44.     else
  45.     {
  46.         if(a[0]>=73)
  47.             y=0;
  48.         if(a[1]>=73)
  49.             y=1;
  50.         if(a[2]>=73)
  51.             y=2;
  52.         if(a[3]>=73)
  53.             y=3;
  54.         system("cls");
  55.         cout<<"比賽結束由"<<b[y]<<"獲勝"<<endl;
  56.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  57.            for(int i=1; i<=a[0]; i++)
  58.                 cout<<" ";
  59.             cout<<"◆"<<endl;
  60.            for(int i=1; i<=a[1]; i++)
  61.                 cout<<" ";
  62.             cout<<"★"<<endl;
  63.            for(int i=1; i<=a[2]; i++)
  64.                 cout<<" ";
  65.             cout<<"▲"<<endl;
  66.            for(int i=1; i<=a[3]; i++)
  67.                 cout<<" ";
  68.             cout<<"●"<<endl;
  69.     }
  70.     system("pause");
  71.     t+=1;
  72.     goto re2:
  73.     return 0;
  74. }
複製代碼

TOP

返回列表