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

TOP

返回列表