返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     re:
  8.     cout<<"[好事成雙]賽馬場\n----------------------------------------------------------|終點"<<endl;
  9.     cout<<"▲"<<endl;
  10.     cout<<"◆"<<endl;
  11.     cout<<"★"<<endl;
  12.     cout<<"●"<<endl;
  13.     system("pause");
  14.     system("cls");
  15.     srand(time(NULL));
  16.     int h[4]={0,0,0,0},win;
  17.     string n[4]={"▲","◆","★","●"};
  18.     while(true)
  19.     {
  20.             cout<<"比賽進行中\n------------------------------------------------------------|終點"<<endl;
  21.             int r=rand()%4;
  22.             h[r]++;
  23.             for(int i=0;i<=h[0];i++)
  24.                     cout<<" ";
  25.             cout<<"▲"<<endl;
  26.             for(int i=0;i<=h[1];i++)
  27.                     cout<<" ";
  28.             cout<<"◆"<<endl;
  29.             for(int i=0;i<=h[2];i++)
  30.                     cout<<" ";
  31.             cout<<"★"<<endl;
  32.             for(int i=0;i<=h[3];i++)
  33.                     cout<<" ";
  34.             cout<<"●"<<endl;
  35.             if(h[r]==60){
  36.                        win=r;  
  37.                        break;
  38.             }
  39.             _sleep(10);
  40.             system("cls");
  41.     }
  42.     system("cls");
  43.     cout<<"比賽結束";
  44.     cout<<"由"<<n[win]<<"先馳得點\n";
  45.     cout<<"------------------------------------------------------------|終點"<<endl;
  46.     for(int i=0;i<=h[0];i++)
  47.                     cout<<" ";
  48.     cout<<"▲"<<endl;
  49.     for(int i=0;i<=h[1];i++)
  50.                     cout<<" ";
  51.     cout<<"◆"<<endl;
  52.     for(int i=0;i<=h[2];i++)
  53.                     cout<<" ";
  54.     cout<<"★"<<endl;
  55.     for(int i=0;i<=h[3];i++)
  56.                     cout<<" ";
  57.     cout<<"●"<<endl;
  58.     system("pause");
  59.     system("cls");
  60.     goto re;
  61.     return 0;
  62. }
複製代碼

TOP

返回列表