返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.         srand(time(NULL));
  7.         re:
  8.         system("cls");
  9.         int r=0;   //0~3
  10.         int s[]={0,0,0,0};   //每匹馬左側的空白數
  11.         cout<<"好事成雙賽馬場"<<endl;
  12.         cout<<"--------------------------------------------------------------------|終點"<<endl;
  13.         cout<<"◆"<<endl;
  14.     cout<<"★"<<endl;
  15.     cout<<"▲"<<endl;
  16.     cout<<"●"<<endl;
  17.         system("pause");
  18.         while(s[r]<70){   //只要有任何一匹馬到達終點,迴圈就會停下來
  19.                 r=rand()%4;   //r=0~3
  20.                 s[r]++;
  21.                 system("cls");
  22.                 cout<<"比賽進行中"<<endl;
  23.                 cout<<"--------------------------------------------------------------------|終點"<<endl;
  24.                 for(int i=0;i<s[0];i++)
  25.                         cout<<" ";
  26.                 cout<<"◆"<<endl;
  27.                 for(int i=0;i<s[1];i++)
  28.                         cout<<" ";
  29.             cout<<"★"<<endl;
  30.             for(int i=0;i<s[2];i++)
  31.                         cout<<" ";
  32.             cout<<"▲"<<endl;
  33.             for(int i=0;i<s[3];i++)
  34.                         cout<<" ";
  35.             cout<<"●"<<endl;
  36.             _sleep(10);
  37.         }
  38.         system("cls");
  39.         cout<<"比賽結束"<<endl;
  40.         cout<<"--------------------------------------------------------------------|終點"<<endl;
  41.         for(int i=0;i<s[0];i++)
  42.                 cout<<" ";
  43.         cout<<"◆"<<endl;
  44.         for(int i=0;i<s[1];i++)
  45.                 cout<<" ";
  46.         cout<<"★"<<endl;
  47.         for(int i=0;i<s[2];i++)
  48.                 cout<<" ";
  49.         cout<<"▲"<<endl;
  50.         for(int i=0;i<s[3];i++)
  51.                 cout<<" ";
  52.         cout<<"●"<<endl;
  53.         system("pause");
  54.         goto re;
  55.         return 0;
  56. }
複製代碼

TOP

返回列表