- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int n=1, balance=0;
- int option, buyin, bet, player;
- re:
- system("cls");
- srand(time(NULL));
- int s[]={0,0,0,0};
- string p[]={"◆","★","▲","●"};
- int r=0;
- cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<4; i++)
- cout<<p[i]<<endl;
- cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
- cin>>option;
- if(option==1)
- {
- cout<<"買入: ";
- cin>>buyin;
- if(buyin<=0)
- {
- cout<<"輸入錯誤!";
- _sleep(1500);
- goto re;
- }
- balance+=buyin;
- goto re;
- }
- else if(option==2)
- {
- cout<<"下注: ";
- cin>>bet;
- if(bet<=0)
- {
- cout<<"輸入錯誤!";
- _sleep(1500);
- goto re;
- }
- if(bet>balance)
- {
- cout<<"可用餘額不足,請先買入!";
- _sleep(1500);
- goto re;
- }
- cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
- cin>>player;
- cout<<"比賽即將開始..."<<endl<<endl;
- }
- else if(option==3)
- {
- goto end;
- }
- else
- {
- cout<<"輸入錯誤!";
- _sleep(1500);
- goto re;
- }
- system("pause");
- system("cls");
複製代碼 |