- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int n=1 , money=0;
- re1:
- int r,option,buyin;
- int space[4]={0,0,0,0};
- string name[4]={"◆","★","▲","●"};
- srand(time(NULL));
- system("cls");
- cout<<"[好棒棒]賭賽馬場"<<"第"<<n<<"局"<<endl;
- cout<<"-------------------------------------|終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"▲"<<endl;
- cout<<"●"<<endl;
- cout<<"可用餘額"<<money<<"元"<<endl<<endl;
- cout<<"(1)買入(2)下注(3)滾 ㊣㊣㊣ 請選擇:";
- cin>>option;
- if(option==1)
- {
- cout<<"買入: ";
- cin>>buyin;
- money=money+buyin;
- goto re1;
- }
- system("pause");
- while(true)
- {
- r=rand()%4;
- space[r]++;
- if(space[r]==34)
- break;
- cout<<"比賽進行中"<<endl;
- cout<<"----------------------------------|終點"<<endl;
- for(int j=0;j<space[0];j++)
- 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<<"比賽結束"<<endl;
- cout<<"----------------------------------|終點"<<"由"<<name[r]<<"先馳得點"<<endl;
- for(int j=0;j<space[0];j++)
- 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;
- n++;
- goto re1;
- system("pause");
- return 0;
- }
複製代碼 |