返回列表 發帖
本帖最後由 宜儒 於 2023-3-18 14:30 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     int round=1;   //局數
  7.     srand(time(NULL));
  8.     re:
  9.     system("cls");
  10.     int r=0;   //0~3
  11.     string p[]={"◆","★","▲","●"};   //存放馬
  12.     int s[]={0,0,0,0};   //每匹馬左側的空白數
  13.     cout<<"好事成雙賽馬場 第"<<round<<"局"<<endl;
  14.     cout<<"--------------------------------------------------------------------|終點"<<endl;
  15.     for(int i=0;i<=3;i++)
  16.         cout<<p[i]<<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 j=0;j<=3;j++){
  25.             for(int i=0;i<s[j];i++)
  26.                 cout<<" ";
  27.             cout<<p[j]<<endl;
  28.         }
  29.         _sleep(10);
  30.         }
  31.     system("cls");
  32.     cout<<"比賽結束! 由"<<p[r]<<"勝出!"<<endl;
  33.     cout<<"--------------------------------------------------------------------|終點"<<endl;
  34.     for(int j=0;j<=3;j++){
  35.         for(int i=0;i<s[j];i++)
  36.             cout<<" ";
  37.         cout<<p[j]<<endl;
  38.     }
  39.     system("pause");
  40.     round++;   //局數+1
  41.     goto re;
  42.     return 0;
  43. }
複製代碼

TOP

返回列表