返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     system("cls");      
  9.     int s[]={0,0,0,0};     
  10.     srand(time(NULL));
  11.     cout<<"「好事成雙」賽馬場"<<endl;
  12.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  13.     cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.         cout<<"按enter開始"<<endl;
  18.         system("pause");

  19.     while(true)
  20.     {
  21.         system("cls");   
  22.         int r=rand()%4;   
  23.         s[r]++;
  24.         cout<<"比賽進行中"<<endl;
  25.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  26.         for(int i=0; i<=s[0]; i++)
  27.             cout<<" ";
  28.         cout<<"◆"<<endl;
  29.         for(int i=0; i<=s[1]; i++)
  30.             cout<<" ";
  31.         cout<<"★"<<endl;
  32.         for(int i=0; i<=s[2]; i++)
  33.             cout<<" ";
  34.         cout<<"▲"<<endl;
  35.         for(int i=0; i<=s[3]; i++)
  36.             cout<<" ";
  37.         cout<<"●"<<endl;
  38.         if(s[r]==73)
  39.             break;
  40.         _sleep(50);                     
  41.     }
  42.     system("cls");
  43.     cout<<"比賽結束"<<endl;
  44.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  45.     for(int i=0; i<=s[0]; i++)
  46.         cout<<" ";
  47.     cout<<"◆"<<endl;
  48.     for(int i=0; i<=s[1]; i++)
  49.         cout<<" ";
  50.     cout<<"★"<<endl;
  51.     for(int i=0; i<=s[2]; i++)
  52.         cout<<" ";
  53.     cout<<"▲"<<endl;
  54.     for(int i=0; i<=s[3]; i++)
  55.         cout<<" ";
  56.     cout<<"●"<<endl;
  57.     system("pause");
  58.     goto re;
  59.     return 0;
  60. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     system("cls");      
  9.     int s[]={0,0,0,0};
  10.         string h[]={"◆","★","▲","●"};     
  11.     srand(time(NULL));
  12.     cout<<"「好事成雙」賽馬場"<<endl;
  13.     cout<<"------------------------------------------------------------------------------------------------------------------| 終點"<<endl;
  14.     for(int i=0;i<=3;i++)
  15.     {
  16.             cout<<h[i]<<endl;
  17.         }
  18.         cout<<"按enter開始  1.一般 2.快速"<<endl;
  19.         int option;
  20.         cin>>option;
  21.        
  22.         system("pause");
  23.     while(true)
  24.     {
  25.         system("cls");   
  26.         int r=rand()%4;   
  27.         
  28.         cout<<"比賽進行中"<<endl;
  29.         cout<<"------------------------------------------------------------------------------------------------------------------| 終點"<<endl;
  30.         if(option==1)
  31.         {
  32.                 s[r]++;
  33.                 for(int j=0; j<=3; j++)
  34.                         {
  35.                         for(int i=0; i<=s[j]; i++)
  36.                             cout<<" ";
  37.                         cout<<h[j]<<endl;
  38.                         }
  39.                         if(s[r]==112)
  40.                     break;
  41.                 _sleep(50);   
  42.                 }
  43.                 else if(option==2)
  44.                 {
  45.                         s[r]+=8;
  46.                         for(int j=0; j<=3; j++)
  47.                         {
  48.                         for(int i=0; i<=s[j]; i++)
  49.                             cout<<" ";
  50.                         cout<<h[j]<<endl;
  51.                         }
  52.                         if(s[r]>=112)
  53.                     break;
  54.                 _sleep(100);   
  55.                 }
  56.         
  57.                                  
  58.     }
  59.     system("cls");
  60.     cout<<"比賽結束"<<endl;
  61.     cout<<"------------------------------------------------------------------------------------------------------------------| 終點"<<endl;
  62.     for(int j=0; j<=3; j++)
  63.                 {
  64.                 for(int i=0; i<=s[j]; i++)
  65.             cout<<" ";
  66.         cout<<h[j]<<endl;
  67.                 }
  68.     system("pause");
  69.     goto re;
  70.     return 0;
  71. }
複製代碼

TOP

返回列表