返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,r;
  7.     re:      
  8.     system("cls");
  9.     int h[4]={0,0,0,0};
  10.     srand(time(NULL));
  11.     cout<<"賽馬場 第"<<n<<"場"<<endl;
  12.     cout<<"------------------------------------------------------------------------|終點"<<endl;
  13.     cout<<"◆"<<endl<<"★"<<endl<<"▲"<<endl<<"●"<<endl;                       //72
  14.     system("pause");
  15.     system("cls");
  16.     while(true)
  17.     {
  18.     cout<<"比賽進行中"<<endl;           
  19.     cout<<"------------------------------------------------------------------------|終點"<<endl;
  20.     r=rand()%4;
  21.     h[r]++;
  22.     for(int i=1;i<=h[0];i++)
  23.         {
  24.             cout<<" ";
  25.         }
  26.         cout<<"◆"<<endl;
  27.     for(int i=1;i<=h[1];i++)
  28.         {
  29.             cout<<" ";
  30.         }
  31.         cout<<"★"<<endl;
  32.     for(int i=1;i<=h[2];i++)
  33.         {
  34.             cout<<" ";
  35.         }
  36.         cout<<"▲"<<endl;
  37.     for(int i=1;i<=h[3];i++)
  38.         {
  39.             cout<<" ";
  40.         }
  41.         cout<<"●"<<endl;
  42.         if(h[r]==72)
  43.             break;
  44.         system("cls");      
  45.     }
  46.     system("cls");
  47.     cout<<"比賽結束";
  48.     if(r==0)
  49.     cout<<"由◆獲得第一"<<endl;
  50.     if(r==1)
  51.     cout<<"由★獲得第一"<<endl;
  52.     if(r==2)
  53.     cout<<"由▲獲得第一"<<endl;
  54.     if(r==3)
  55.     cout<<"由●獲得第一"<<endl;         
  56.     cout<<"------------------------------------------------------------------------|終點"<<endl;
  57.     r=rand()%4;
  58.     h[r]++;
  59.     for(int i=1;i<=h[0];i++)
  60.         {
  61.             cout<<" ";
  62.         }
  63.         cout<<"◆"<<endl;
  64.     for(int i=1;i<=h[1];i++)
  65.         {
  66.             cout<<" ";
  67.         }
  68.         cout<<"★"<<endl;
  69.     for(int i=1;i<=h[2];i++)
  70.         {
  71.             cout<<" ";
  72.         }
  73.         cout<<"▲"<<endl;
  74.     for(int i=1;i<=h[3];i++)
  75.         {
  76.             cout<<" ";
  77.         }
  78.         cout<<"●"<<endl;
  79.     if(h[r]==72)
  80.     {
  81.         system("cls");        
  82.     }   
  83.     system("pause");
  84.     n++;
  85.     goto re;
  86.     system("pause");
  87.     return 0;
  88. }
複製代碼

TOP

返回列表