返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int r=0, n=1, b, buy, option, bet, option2;   
  8.     re:
  9.     system("cls");
  10.     srand(time(NULL));
  11.     int s[]={0,0,0,0};
  12.     string p[]={"◆","★","▲","●"};
  13.     cout<<"「好事成雙」賽馬場 第"<<n<<"局"<<endl;
  14.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  15.     for(int i=0; i<4; i++)
  16.     {
  17.         cout<<p[i]<<endl;
  18.     }
  19.     cout<<"餘額"<<b<<"元"<<endl;
  20.     cout<<"(1)儲值(2)下注(3)離開 請選擇:";
  21.     cin>>option;
  22.     if(option==1)
  23.     {
  24.         cout<<"儲值:";
  25.         cin>>buy;
  26.         if(buy>=1)
  27.         {
  28.             b=b+buy;
  29.             goto re;
  30.         }
  31.         else if(buy<=0)
  32.         {
  33.             cout<<"輸入錯誤"<<endl;
  34.             _sleep(1500);
  35.             goto re;
  36.         }
  37.     }
  38.     if(option==2)
  39.     {
  40.         cout<<"下注:";
  41.         cin>>bet;
  42.         if(bet<=b)
  43.         {
  44.             cout<<"(1)◆(2)★(3)▲(4)● 請選擇"<<endl;
  45.             cin>>option2;
  46.             cout<<"比賽即將開始....."<<endl;
  47.             _sleep(1500);
  48.         }
  49.         else if(bet>b)
  50.         {
  51.             cout<<"可用餘額不足,請先買入!"<<endl;
  52.             _sleep(1500);
  53.             goto re;
  54.         }
  55.         else if(bet<=0)
  56.         {
  57.             cout<<"輸入錯誤"<<endl;
  58.             _sleep(1500);
  59.             goto re;
  60.         }
  61.     }
  62.     else if(option==3)
  63.     {
  64.         goto end;
  65.     }
  66.     else
  67.     {
  68.         cout<<"輸入錯誤"<<endl;
  69.         _sleep(1500);
  70.         goto re;
  71.     }
  72.     system("pause");
  73.     system("cls");
  74.     while(s[r]<=73)
  75.     {
  76.         r=rand()%4;
  77.         s[r]++;
  78.         cout<<"比賽進行中"<<endl;
  79.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  80.         for(int i=0; i<4; i++)
  81.         {
  82.             for(int j=0; j<s[i]; j++)
  83.                 cout<<" ";
  84.             cout<<p[i]<<endl;
  85.         }
  86.         _sleep(50);
  87.         system("cls");
  88.     }
  89.     cout<<"比賽結束 "<<p[r]<<"贏"<<endl;
  90.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  91.     for(int i=0; i<4; i++)
  92.     {
  93.         for(int j=0; j<s[i]; j++)
  94.             cout<<" ";
  95.         cout<<p[i]<<endl;
  96.     }
  97.     if(option2-1==r)
  98.     {
  99.         cout<<"賭贏"<<bet*3<<"元"<<endl;
  100.         b=b+bet*3;
  101.     }
  102.     else
  103.     {
  104.         cout<<"賭輸"<<bet<<"元"<<endl;
  105.         b-=bet;
  106.     }
  107.     n++;
  108.     system("pause");
  109.     goto re;
  110.     end:
  111.     return 0;
  112. }
複製代碼

TOP

返回列表