返回列表 發帖
  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.             b=b-bet;
  45.             cout<<"(1)◆(2)★(3)▲(4)● 請選擇"<<endl;
  46.             cin>>option2;
  47.             cout<<"比賽即將開始....."<<endl;
  48.             _sleep(1500);
  49.         }
  50.         else if(bet>b)
  51.         {
  52.             cout<<"可用餘額不足,請先買入!"<<endl;
  53.             _sleep(1500);
  54.             goto re;
  55.         }
  56.         else if(bet<=0)
  57.         {
  58.             cout<<"輸入錯誤"<<endl;
  59.             _sleep(1500);
  60.             goto re;
  61.         }
  62.     }
  63.     else if(option==3)
  64.     {
  65.         goto end;
  66.     }
  67.     else
  68.     {
  69.         cout<<"輸入錯誤"<<endl;
  70.         _sleep(1500);
  71.         goto re;
  72.     }
  73.     system("pause");
  74.     system("cls");
  75.     while(s[r]<=73)
  76.     {
  77.         r=rand()%4;
  78.         s[r]++;
  79.         cout<<"比賽進行中"<<endl;
  80.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  81.         for(int i=0; i<4; i++)
  82.         {
  83.             for(int j=0; j<s[i]; j++)
  84.                 cout<<" ";
  85.             cout<<p[i]<<endl;
  86.         }
  87.         _sleep(50);
  88.         system("cls");
  89.     }
  90.     cout<<"比賽結束 "<<p[r]<<"贏"<<endl;
  91.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  92.     for(int i=0; i<4; i++)
  93.     {
  94.            
  95.         for(int j=0; j<s[i]; j++)
  96.             cout<<" ";
  97.         cout<<p[i]<<endl;
  98.     }
  99.     if(option2-1==r)
  100.     {
  101.         cout<<"賭贏"<<bet*3<<"元"<<endl;
  102.         b=b+bet*3;
  103.     }
  104.     else
  105.     {
  106.         cout<<"賭輸"<<bet<<"元"<<endl;
  107.         b-=bet;
  108.     }
  109.     n++;
  110.     system("pause");
  111.     goto re;
  112.     end:
  113.     return 0;
  114. }
複製代碼

TOP

返回列表