返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     string h[]={"◆","★","▲","●"};
  7.     int m=0,m1,m2,option1,option2,x=1,y,r;
  8.     int n[]={0,0,0,0};
  9.     srand(time(NULL));
  10. re:
  11.     system("cls");
  12.     cout<<"好事成雙賽馬場 第"<<x<<"場"<<endl;
  13.     cout<<"----------------------------------------------------------------------|終點"<<endl;
  14.     for(int i=0;i<4;i++)
  15.         cout<<h[i]<<endl;
  16. re2:

  17.     cout<<endl<<"可用餘額:"<<m<<"元"<<endl;
  18.     cout<<"(1)買入 (2)下注 (3)離開   請選擇:"<<endl;
  19.     cin>>option1;
  20.     if(option1==1){
  21.         cout<<"買入:";
  22.         cin>>m1;
  23.         if(m1<=0){
  24.             cout<<"輸入錯誤"<<endl;
  25.             _sleep(1500);
  26.             goto re;
  27.         }
  28.         m+=m1;
  29.         goto re;
  30.     }
  31.     else if(option1==2){
  32.         cout<<"下注:";
  33.         cin>>m2;
  34.         if(m2<=0){
  35.             cout<<"輸入錯誤"<<endl;
  36.             _sleep(1500);
  37.             goto re;
  38.         }
  39.         if(m2>m){
  40.             cout<<"餘額不足"<<endl;
  41.             _sleep(1500);
  42.             goto re;
  43.         }
  44.         cout<<"(1)◆ (2)★ (3)▲ (4)●請選擇:"<<endl;
  45.         cin>>option2;
  46.         cout<<"比賽即將開始...."<<endl;
  47.     }
  48.     else if(option1==3){
  49.         goto end;
  50.     }
  51.     else{
  52.         cout<<"輸入錯誤"<<endl;
  53.             _sleep(1500);
  54.             system("cls");
  55.             goto re2;
  56.     }
  57.         system("pause");
  58.         system("cls");

  59.     while(n[r]<73){
  60.        r=rand()%4;
  61.        n[r]++;
  62.         _sleep(0.1);
  63.         cout<<"比賽進行中"<<endl;
  64.         cout<<"---------------------------------------------------------------------------|終點"<<endl;
  65.         for(int i=0;i<=n[0];i++)
  66.             cout<<" ";
  67.             cout<<"◆"<<endl;
  68.         for(int i=0;i<=n[1];i++)
  69.             cout<<" ";
  70.             cout<<"★"<<endl;
  71.         for(int i=0;i<=n[2];i++)
  72.             cout<<" ";
  73.             cout<<"▲"<<endl;
  74.         for(int i=0;i<=n[3];i++)
  75.             cout<<" ";
  76.             cout<<"●"<<endl;
  77.         if(n[r]==73)
  78.             break;
  79.             _sleep(50);
  80.             system("cls");
  81.     }
  82.     system("cls");
  83.     cout<<"比賽結束 由"<<h[r]<<"獲勝"<<endl;
  84.     cout<<"---------------------------------------------------------------------------|終點"<<endl;
  85.     for(int i=0;i<=n[0];i++)
  86.             cout<<" ";
  87.             cout<<"◆"<<endl;
  88.     for(int i=0;i<=n[1];i++)
  89.             cout<<" ";
  90.             cout<<"★"<<endl;
  91.     for(int i=0;i<=n[2];i++)
  92.             cout<<" ";
  93.             cout<<"▲"<<endl;
  94.     for(int i=0;i<=n[3];i++)
  95.             cout<<" ";
  96.             cout<<"●"<<endl;

  97.         if(option2==r+1){
  98.             cout<<"賺到"<<m2*3<<"元"<<endl;
  99.             m+=m2*3;
  100.         }
  101.         else{
  102.             cout<<"賠"<<m2<<"元"<<endl;
  103.             m-=m2;
  104.         }
  105.         system("pause");
  106.         system("cls");
  107.         x++;
  108.         goto re;
  109. end:
  110.     cout<<"慢走!"<<endl;
  111.     _sleep(1500);
  112.     return 0;
  113. }
複製代碼

TOP

返回列表