- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int balance=0;
- start:
- srand(time(NULL));
- int space[]={0,0,0,0};
- int option, money;
- system("cls");
- cout<<"賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
- cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
- cin>>option;
-
- if (option==1)
- { cout<<"買入: ";
- cin>>money;
- balance+=money; //balance=balance+buyin
- goto start;
- }
- system("pause");
- while (true)
- {
- int r=rand()%4;
- space[r]++;
- if(space[r]==74)
- break;
- cout<<"比賽進行中"<<endl;
- cout<<"--------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0;i<=space[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int j=0;j<=space[1]; j++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int j=0;j<=space[2];j++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int j=0;j<=space[3];j++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
- system("cls");
- }
- cout<<"比賽結束! 由 ";
- if(space[0]==74)
- cout<<"◆";
- else if(space[1]==74)
- cout<<"★";
- else if(space[2]==74)
- cout<<"▲";
- else
- cout<<"●";
- cout<<" 先到達終點!"<<endl;
-
- cout<<"比賽結束"<<endl;
- cout<<"--------------------------------------------------------------------------| 終點"<<endl;
- for(int i=0;i<=space[0];i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
- for(int j=0;j<=space[1]; j++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
- for(int j=0;j<=space[2];j++)
- {
- cout<<" ";
- }
- cout<<"▲"<<endl;
- for(int j=0;j<=space[3];j++)
- {
- cout<<" ";
- }
- cout<<"●"<<endl;
- system("pause");
- goto start;
- system("pause");
- return 0;
- }
複製代碼 |