- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n=1, money=0;
- re:
- int a=0, b=0, c=0, d=0, r, option, buyin;
- system("cls");
- cout<<"+++好事成雙->賽馬場+++ 第"<<n<<"局"<<endl;
- cout<<"-------------------------------------------|終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- cout<<endl;
- cout<<"可用餘額:"<<money<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開"<<endl;
- cin>>option;
- if(option==1)
- {
- cout<<"買入:"<<endl;
- cin>>buyin;
- money+=buyin;
- goto re;
- }
- system("pause");
- system("cls");
- srand(time(NULL));
-
- while(a!=20 && b!=20 && c!=20 && d!=20)
- {
- cout<<"賽馬進行中..."<<endl;
- cout<<"-------------------------------------------|終點"<<endl;
- r = rand()%4+1;
- if(r==1)
- a++;
- if(r==2)
- b++;
- if(r==3)
- c++;
- if(r==4)
- d++;
-
- for(int i=0;i<=a;i++)
- cout<<" ";
- cout<<"◆"<<endl;
- a++;
- for(int i=0;i<=b;i++)
- cout<<" ";
- cout<<"★"<<endl;
- b++;
- for(int i=0;i<=c;i++)
- cout<<" ";
- cout<<"▲"<<endl;
- c++;
- for(int i=0;i<=d;i++)
- cout<<" ";
- cout<<"●"<<endl;
- d++;
- system("cls");
-
- }
- cout<<"賽馬結束...!由 ";
- if(a==20)
- cout<<"◆";
- else if(b==20)
- cout<<"★";
- else if(c==20)
- cout<<"▲";
- else
- cout<<"●";
- cout<<"先抵達終點!"<<endl;
- cout<<"-------------------------------------------|終點"<<endl;
- for(int i=0;i<=a;i++)
- cout<<" ";
- cout<<"◆"<<endl;
- a++;
- for(int i=0;i<=b;i++)
- cout<<" ";
- cout<<"★"<<endl;
- b++;
- for(int i=0;i<=c;i++)
- cout<<" ";
- cout<<"▲"<<endl;
- c++;
- for(int i=0;i<=d;i++)
- cout<<" ";
- cout<<"●"<<endl;
- d++;
- system("pause");
- n++;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |