- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int t=1;
- int s,sum,v,money=0;
- re1:
- srand(time(NULL));
- cout<<"賽馬場 第"<<t<<"局"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- int a[]{0,0,0,0};
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- re2:
- cout<<"可用餘額:"<<sum<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇:";
- cin>>v;
- if(v==1)
- {
- cout<<"買入: ";
- cin>>money;
- sum+=money;
- }
- system("pause");
- cout<<"比賽開始"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- re:
- if(a[0]<73&&a[1]<73&&a[2]<73&&a[3]<73){
- system("cls");
- cout<<"比賽進行中"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- s=rand()%4;
- a[s]++;
- for(int i=1; i<=a[0]; i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=1; i<=a[1]; i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=1; i<=a[2]; i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=1; i<=a[3]; i++)
- cout<<" ";
- cout<<"●"<<endl;
- _sleep(1);
- goto re;
- }else{
- system("cls");
- if(a[0]>=73){
- cout<<"比賽結束,最終由◆勝出!!!"<<endl;
- }else if(a[1]>=73){
- cout<<"比賽結束,最終由★勝出!!!"<<endl;
- }else if(a[2]>=73){
- cout<<"比賽結束,最終由▲勝出!!!"<<endl;
- }else if(a[3]>=73){
- cout<<"比賽結束,最終由●勝出!!!"<<endl;
- }
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- }
- for(int i=1; i<=a[0]; i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=1; i<=a[1]; i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=1; i<=a[2]; i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=1; i<=a[3]; i++)
- cout<<" ";
- cout<<"●"<<endl;
- t++;
- system("pause");
- goto re1;
- return 0;
- }
複製代碼 |