返回列表 發帖
  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.     system("pause");
  18.     while(true)
  19.         {
  20.         system("cls");
  21.         int r=rand()%4;
  22.         s[r]++;
  23.         cout<<"比賽進行中"<<endl;
  24.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  25.         for(int i=0;i<s[0];i++)
  26.         {
  27.                 cout<<" ";
  28.         }
  29.         cout<<"◆"<<endl;
  30.         for(int i=0;i<s[1];i++)
  31.         {
  32.                 cout<<" ";
  33.         }
  34.         cout<<"★"<<endl;
  35.         for(int i=0;i<s[2];i++)
  36.         {
  37.                 cout<<" ";
  38.         }
  39.         cout<<"▲"<<endl;
  40.         for(int i=0;i<s[3];i++)
  41.         {
  42.                 cout<<" ";
  43.         }
  44.         cout<<"●"<<endl;
  45.         if(s[r]==73)
  46.         {
  47.                 break;
  48.                 _sleep(50);
  49.         }

  50.         }
  51.         system("cls");
  52.         cout<<"比賽結束"<<endl;
  53.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  54.         for(int i=0;i<s[0];i++)
  55.         {
  56.                 cout<<" ";
  57.         }
  58.         cout<<"◆"<<endl;
  59.         for(int i=0;i<s[1];i++)
  60.         {
  61.                 cout<<" ";
  62.         }
  63.         cout<<"★"<<endl;
  64.         for(int i=0;i<s[2];i++)
  65.         {
  66.                 cout<<" ";
  67.         }
  68.         cout<<"▲"<<endl;
  69.         for(int i=0;i<s[3];i++)
  70.         {
  71.                 cout<<" ";
  72.         }
  73.         cout<<"●"<<endl;
  74.         system("pause");
  75.         goto re;
  76.     system("pause");
  77.     return 0;
  78. }
複製代碼

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<4;i++)
  15.         {
  16.                 cout<<h[i]<<endl;
  17.         }
  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 j=0;j<4;j++)
  27.         {
  28.                 for(int i=0;i<s[j];i++)
  29.                 {
  30.                 cout<<" ";
  31.                 }
  32.                 cout<<h[j]<<endl;
  33.         }
  34.        
  35.        

  36.         if(s[r]==73)
  37.         {
  38.                 break;
  39.                 _sleep(50);
  40.         }

  41.         }
  42.         system("cls");
  43.         cout<<"比賽結束"<<endl;
  44.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  45.         for(int x=0;x<4;x++)
  46.         {
  47.                 for(int y=0;y<s[x];y++)
  48.                 {
  49.                 cout<<" ";
  50.                 }
  51.         cout<<h[x]<<endl;
  52.         }


  53.         system("pause");
  54.         goto re;
  55.     return 0;
  56. }
複製代碼

TOP

返回列表