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

  41.     }
  42.     else
  43.     {
  44.         system("cls");
  45.         cout<<"比賽結束"<<endl;
  46.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  47.            for(int i=1; i<=a[0]; i++)
  48.                 cout<<" ";
  49.             cout<<"◆"<<endl;
  50.            for(int i=1; i<=a[1]; i++)
  51.                 cout<<" ";
  52.             cout<<"★"<<endl;
  53.            for(int i=1; i<=a[2]; i++)
  54.                 cout<<" ";
  55.             cout<<"▲"<<endl;
  56.            for(int i=1; i<=a[3]; i++)
  57.                 cout<<" ";
  58.             cout<<"●"<<endl;
  59.     }
  60.     system("pause");
  61.     return 0;
  62. }
複製代碼

TOP

返回列表