- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int round=1,balance=0,used=0;
- int option,buy,bet,player;
- re:
- system("cls");
- srand(time(NULL));
- string p[]={"◆","★","▲","●"};
- int s[]={0,0,0,0};
- int r=0;
- cout<<"「好事成霜」賽馬場 第"<<round<<"局"<<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<<endl<<"買入: ";
- cin>>buy;
- if(buy<=0){
- cout<<"輸入錯誤";
- _sleep(1500);
- goto re;
- }
- balance=balance+buy;
- goto re;
- }
- else if(option==2){
- cout<<endl<<"要下注多少: ";
- cin>>bet;
- if(bet<=0){
- cout<<"輸入錯誤";
- _sleep(1500);
- goto re;
- }
- else if(bet>balance){
- cout<<"可用餘額不足,請先買入!";
- _sleep(1500);
- goto re;
- }
- else
- cout<<"(1)◆(2)★(3)▲(4)● 請選擇:";
- cin>>player;
- player=player-1;
- goto start;
- }
- else if(option==3){
- goto end;
- }
- else
- cout<<"輸入錯誤"<<endl;
- _sleep(1500);
- goto re;
- start:
- cout<<"準備開始比賽"<<endl<<endl;
- system("pause");
- system("cls");
- while(s[r]<=73)
- {
- r=rand()%4;
- s[r]++;
- cout<<"比賽進行中"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<4; i++)
- {
- for(int j=0; j<s[i]; j++)
- cout<<" ";
- cout<<p[i]<<endl;
- }
- _sleep(10);
- system("cls");
- }
- cout<<"比賽結束 由"<<p[r]<<"勝出"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<4; i++)
- {
-
- for(int j=0; j<s[i]; j++)
- cout<<" ";
- cout<<p[i]<<endl;
- }
- if(player<r or player>r)
- {
- balance-=bet;
- cout<<"損失"<<bet<<"元"<<endl<<endl;
- used=used-bet;
- }
- else
- {
- cout<<"恭喜贏得"<<bet*3<<"元"<<endl<<endl;
- balance+=bet*3;
- used=used+bet*3;
- }
- system("pause");
- round++;
- goto re;
- end:
- if(used>0)
- cout<<"恭喜你!這次總共贏了"<<used<<"元!"<<endl;
- else if(used<0)
- cout<<"不好意思!讓你損失了"<<-used<<"元!"<<endl;
- else
- cout<<"沒輸沒贏!全身而退!"<<endl;
- _sleep(1500);
- system("pause");
- return 0;
- }
複製代碼 |