本帖最後由 宜儒 於 2023-3-18 14:30 編輯
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- int round=1; //局數
- srand(time(NULL));
- re:
- system("cls");
- int r=0; //0~3
- string p[]={"◆","★","▲","●"}; //存放馬
- int s[]={0,0,0,0}; //每匹馬左側的空白數
- cout<<"好事成雙賽馬場 第"<<round<<"局"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- for(int i=0;i<=3;i++)
- cout<<p[i]<<endl;
- system("pause");
- while(s[r]<70){ //只要有任何一匹馬到達終點,迴圈就會停下來
- r=rand()%4; //r=0~3
- s[r]++;
- system("cls");
- cout<<"比賽進行中"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- for(int j=0;j<=3;j++){
- for(int i=0;i<s[j];i++)
- cout<<" ";
- cout<<p[j]<<endl;
- }
- _sleep(10);
- }
- system("cls");
- cout<<"比賽結束! 由"<<p[r]<<"勝出!"<<endl;
- cout<<"--------------------------------------------------------------------|終點"<<endl;
- for(int j=0;j<=3;j++){
- for(int i=0;i<s[j];i++)
- cout<<" ";
- cout<<p[j]<<endl;
- }
- system("pause");
- round++; //局數+1
- goto re;
- return 0;
- }
複製代碼 |