- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- int round=1; //局數
- int balance=0; //可用餘額
- int option; //選項
- int buy; //買入
- 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;
- cout<<"可用餘額:"<<balance<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
- cin>>option;
-
- if(option==1){
- cout<<"買入:";
- cin>>buy;
- balance+=buy;
- goto re;
- }
- 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;
- }
複製代碼 |