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

TOP

返回列表