返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int s=1;
  8.     re1:
  9.     srand(time(NULL));
  10.     cout<<"賽馬場   第"<<s<<"局"<<endl;
  11.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  12.     int a[]{0,0,0,0};
  13.     int t;
  14.     cout<<"◆"<<endl;
  15.     cout<<"★"<<endl;
  16.     cout<<"▲"<<endl;
  17.     cout<<"●"<<endl;
  18.     system("pause");
  19.     cout<<"比賽開始"<<endl;
  20.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;

  21.     re:
  22.     if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73){
  23.         system("cls");
  24.         cout<<"比賽進行中"<<endl;
  25.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;


  26.         s=rand()%4;
  27.         a[s]++;

  28.         for(int i=1; i<=a[0]; i++)
  29.                 cout<<" ";
  30.             cout<<"◆"<<endl;
  31.         for(int i=1; i<=a[1]; i++)
  32.                 cout<<" ";
  33.             cout<<"★"<<endl;
  34.         for(int i=1; i<=a[2]; i++)
  35.                 cout<<" ";
  36.             cout<<"▲"<<endl;
  37.         for(int i=1; i<=a[3]; i++)
  38.                 cout<<" ";
  39.             cout<<"●"<<endl;
  40.          _sleep(1);


  41.         goto re;
  42.         }else{
  43.         system("cls");
  44.         if(a[0]>=73){

  45.             cout<<"比賽結束,最終由◆勝出!!!"<<endl;

  46.         }else if(a[1]>=73){

  47.             cout<<"比賽結束,最終由★勝出!!!"<<endl;

  48.         }else if(a[2]>=73){

  49.             cout<<"比賽結束,最終由▲勝出!!!"<<endl;

  50.         }else if(a[3]>=73){

  51.             cout<<"比賽結束,最終由●勝出!!!"<<endl;

  52.         }

  53.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  54.         }
  55.         for(int i=1; i<=a[0]; i++)
  56.                 cout<<" ";
  57.             cout<<"◆"<<endl;
  58.            for(int i=1; i<=a[1]; i++)
  59.                 cout<<" ";
  60.             cout<<"★"<<endl;
  61.            for(int i=1; i<=a[2]; i++)
  62.                 cout<<" ";
  63.             cout<<"▲"<<endl;
  64.            for(int i=1; i<=a[3]; i++)
  65.                 cout<<" ";
  66.             cout<<"●"<<endl;
  67.         s++;
  68.         system("pause");
  69.         goto re1;
  70.         return 0;
  71.     }
複製代碼

TOP

返回列表