- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int n=1;
- int money=0, x, money2;
- re:
- system("cls");
- srand(time(NULL));
- int s[]={0,0,0,0};
- cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- {
- cout<<"可用餘額:"<<money<<"元"<<endl<<endl;
- cout<<"<1>買入 <2>下注 <3>離開 請選擇:";
- cin>>x;
- if(x==1)
- cout<<"買入: ";
- cin>>money2;
- money+=money2;
- system("cls");
- goto re;
- }
- while(true)
- {
- system("cls");
- int r=rand()%4;
- s[r]++;
- cout<<"比賽進行中"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<=s[0]; i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=0; i<=s[1]; i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=0; i<=s[2]; i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=0; i<=s[3]; i++)
- cout<<" ";
- cout<<"●"<<endl;
- if(s[r]==73)
- break;
- _sleep(0.00000001);
- }
- system("cls");
- cout<<"比賽結束 ";
- if(s[0]==73)
- cout<<"由◆先馳得點!"<<endl;
- if(s[1]==73)
- cout<<"由★先馳得點!"<<endl;
- if(s[2]==73)
- cout<<"由▲先馳得點!"<<endl;
- if(s[3]==73)
- cout<<"由●先馳得點!"<<endl;
- cout<<"-------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0; i<=s[0]; i++)
- cout<<" ";
- cout<<"◆"<<endl;
- for(int i=0; i<=s[1]; i++)
- cout<<" ";
- cout<<"★"<<endl;
- for(int i=0; i<=s[2]; i++)
- cout<<" ";
- cout<<"▲"<<endl;
- for(int i=0; i<=s[3]; i++)
- cout<<" ";
- cout<<"●"<<endl;
- system("pause");
- n++;
- goto re;
- return 0;
- }
複製代碼 |