- [code]#include<ios
- tream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int round=1;
- int balance=0;
- int bet=0;
- int option;
- int buy;
- int player;
- int h;
-
- re:
- system("cls");
- srand(time(NULL));
-
- int s[]={0,0,0,0};
- string p[]={"豬","馬","牛","羊"};
- 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<<"你要儲值多少錢:";
- cin>>buy;
- if(buy<0)
- {
- cout<<"輸入錯誤";
- _sleep(1500);
- goto re;
- }
- balance=balance+buy;
- h=h+buy;
- 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<<"(1)豬","(2)馬","(3)牛","(4)羊 請選擇: ";
- cin>>player;
- cout<<"比賽即將開始....."<<endl<<endl;
-
- }
- else if(option==3)
- {
- goto end;
- }
- else
- {
- goto re;
- }
- 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(50);
- 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;
- }
- cout<<endl;
- if(player-1==r)
- {
- balance=balance+bet*3;
- cout<<"贏了"<<bet*3<<"元";
- }
- else
- {
- balance=balance-bet;
- cout<<"輸了"<<bet<<"元";
- }
- system("pause");
- round++;
- goto re;
-
- end:
- cout<<"不玩了"<<endl;
- _sleep(1500);
- if(balance==h)
- {
- cout<<"沒輸沒贏!全身而退!"<<endl;
- _sleep(1500);
- }
- else if(balance>h)
- {
- cout<<"恭喜你!這次總共贏了"<<balance-h<<"元!"<<endl;
- _sleep(1500);
- }
- else if(balance<h)
- {
- cout<<"不好意思!讓你損失了"<<h-balance<<"元!"<<endl;
- _sleep(1500);
- }
- cout<<"歡迎光臨,下次再來 !"<<endl;
- _sleep(1500);
- goto re;
- return 0;
- }
複製代碼 [/code] |