- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int x,y,sum=0;
- int money,money2;
- int c=1;
- srand(time(NULL));
- string b[]{"◆","★","▲","●"};
- re:
- int z=0;
- int a[]{0,0,0,0};
- system("cls");
- cout<<"「好事成雙」賽馬場 第"<<c<<" 局"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<4; i++)
- cout<<b[i]<<endl;
- cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
- cin>>x;
- if(x==1){
- cout<<"買入: ";
- cin>>money;
- if(money<=0){
- cout<<"輸入錯誤!";
- _sleep(1500);
- goto re;
- }else{
- sum+=money;
- goto re;
- }
- }else if(x==2){
- cout<<"下注: ";
- cin>>money2;
- if(money2<=0){
- cout<<"輸入錯誤!";
- _sleep(1500);
- goto re;
- }else if(money2>sum){
- cout<<"可用餘額不足,請先買入!";
- _sleep(1500);
- goto re;
- }else{
- cout<<"請選擇下注對象!";
- cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
- cin>>y;
- sum-=money2;
- cout<<"比賽即將開始..."<<endl<<endl;
- }
- }else if(x==3){
- goto end;
- }else{
- cout<<"輸入錯誤!";
- _sleep(1500);
- goto re;
- }
- system("pause");
- system("cls");
- while(a[z]<=73)
- {
- z=rand()%4;
- a[z]++;
- cout<<"比賽進行中"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<4; i++)
- {
- for(int j=0; j<a[i]; j++)
- cout<<" ";
- cout<<b[i]<<endl;
- }
- _sleep(1);
- system("cls");
- }
- cout<<"比賽結束! 由 "<<b[z]<<" 先馳得點!"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<4; i++)
- {
- for(int j=0; j<a[i]; j++)
- cout<<" ";
- cout<<b[i]<<endl;
- }
- if(y-1==z){
- cout<<"恭喜贏得"<<money2*3<<"元!!!";
- sum+=money2*3;
- }else{
- cout<<"損失"<<money2<<"元";
- }
- c++;
- system("pause");
- goto re;
- end:
- cout<<endl<<"慢走!"<<endl;
- _sleep(1500);
- system("pause");
- return 0;
- }
複製代碼 |