- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=1 ,mony=0 ,many;
- re:
- int a=0 ,b=0 ,c=0 ,d=0 ,z ,win ,buy ,bird ,n;
- srand(time(NULL));
- cout<<"第"<<x<<"場[萬事如意]賽馬場"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- cout<<"◆"<<endl;
- cout<<"★"<<endl;
- cout<<"㊣"<<endl;
- cout<<"▼"<<endl<<endl;
- cout<<"可用餘額:"<<mony<<"元"<<endl;
- cout<<"(1)買入(2)下注(3)離開 請選擇:";
- cin>>z;
- if(z==1)
- {
- cout<<"買入:";
- cin>>buy;
- mony=mony+buy;
- system("cls");
- goto re;
- }else if(z==2)
- {
- if(mony==0)
- {
- cout<<"餘額不足!請先買入!";
- system("pause");
- system("cls");
- goto re;
- }
- cout<<"下注:";
- cin>>bird;
- if(bird>mony)
- {
- cout<<"餘額不足!請先買入!";
- system("pause");
- system("cls");
- goto re;
- }else if(bird<=mony)
- {
- cout<<"(1)■(2)★(3)㊣(4)▼ 請選擇:";
- cin>>many;
- cout<<"比賽即將開始>>>"<<endl<<endl;
- system("pause");
- }
- }else if(z==3)
- {
- goto go;
- }else
- {
- cout<<"輸入錯誤";
- system("pause");
- system("cls");
- goto re;
- }
- system("pause");
- while(a!=70 && b!=70 && c!=70 && d!=70)
- {
- cout<<"比賽中"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
- z=rand()%4+1;
- if(z==1)
- {
- a+=2;
- }
- if(z==2)
- {
- b+=2;
- }
- if(z==3)
- {
- c+=2;
- }
- if(z==4)
- {
- d+=2;
- }
- for(int i=0; i<=a; i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
-
- for(int i=0; i<=b; i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
-
- for(int i=0; i<=c; i++)
- {
- cout<<" ";
- }
- cout<<"㊣"<<endl;
-
- for(int i=0; i<=d; i++)
- {
- cout<<" ";
- }
- cout<<"▼"<<endl;
-
- system("cls");
- }
-
- cout<<"第"<<x<<"場比賽結束 由";
- if(a==70)
- {
- cout<<"◆";
- win=1;
- }else if(b==70)
- {
- cout<<"★";
- win=2;
- }else if(c==70)
- {
- cout<<"㊣";
- win=3;
- }else
- {
- cout<<"▼";
- win=4;
- }
- cout<<"先馳得點!"<<endl;
- cout<<"------------------------------------------------------------------------| 終點"<<endl;
-
- for(int i=0; i<=a; i++)
- {
- cout<<" ";
- }
- cout<<"◆"<<endl;
-
- for(int i=0; i<=b; i++)
- {
- cout<<" ";
- }
- cout<<"★"<<endl;
-
- for(int i=0; i<=c; i++)
- {
- cout<<" ";
- }
- cout<<"㊣"<<endl;
-
- for(int i=0; i<=d; i++)
- {
- cout<<" ";
- }
- cout<<"▼"<<endl;
-
- cout<<"按任意鍵進行下一場比賽"<<endl;
- if(win=many)
- {
- mony=mony+bird*3;
- }else
- {
- mony=mony-bird;
- }
- system("pause");
- system("cls");
- x++;
- goto re;
- go:
- system("pause");
- return 0;
- }
複製代碼 |