返回列表 發帖
  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

返回列表