返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int speed=10,n=1;
  8.     re:
  9.     system("cls");
  10.     int d[]={0,0,0,0};
  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.         system("cls");
  21.         cout<<"比賽進行中 第"<<n<<"局"<<endl;
  22.         cout<<"-----------------------------------------------------------------| 終點"<<endl;
  23.         int g=rand()%4;
  24.         d[g]++;
  25.         for(int a=0;a<=d[0];a++)
  26.             cout<<" ";
  27.         cout<<"●"<<endl;
  28.         for(int b=0;b<=d[1];b++)
  29.             cout<<" ";
  30.         cout<<"▲"<<endl;
  31.         for(int c=0;c<=d[2];c++)
  32.             cout<<" ";
  33.         cout<<"★"<<endl;
  34.         for(int e=0;e<=d[3];e++)
  35.             cout<<" ";
  36.         cout<<"◆"<<endl;
  37.         if(d[0]>=64||d[1]>=64||d[2]>=64||d[3]>=64)
  38.         {
  39.             system("cls");
  40.             cout<<"比賽結束 由";
  41.             if(d[0]>=64)
  42.                 cout<<"●";
  43.             else if(d[1]>=64)
  44.                 cout<<"▲";
  45.             else if(d[2]>=64)
  46.                 cout<<"★";
  47.             else if(d[3]>=64)
  48.                 cout<<"◆";
  49.             cout<<"先馳得點!"<<endl;
  50.             cout<<"-----------------------------------------------------------------| 終點"<<endl;
  51.             int g=rand()%4;
  52.             d[g]++;
  53.             for(int a=0;a<=d[0];a++)
  54.                 cout<<" ";
  55.             cout<<"●"<<endl;
  56.             for(int b=0;b<=d[1];b++)
  57.                 cout<<" ";
  58.             cout<<"▲"<<endl;
  59.             for(int c=0;c<=d[2];c++)
  60.                 cout<<" ";
  61.             cout<<"★"<<endl;
  62.             for(int e=0;e<=d[3];e++)
  63.                 cout<<" ";
  64.             cout<<"◆"<<endl;
  65.             n=n+1;   
  66.             break;
  67.         }   
  68.         _sleep(speed);
  69.     }
  70.     system("pause");
  71.     goto re;
  72.     return 0;
  73. }
複製代碼

TOP

返回列表