返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int steps[] = { 0,0,0,0 };
  9.     string shape[] = { "◆","★","▲","●" };
  10.     int round = 0, balance = 0, choose, horse,plus,lost=0,win=0,num=0;
  11.     int w=0,ran;
  12.     re:
  13.     system("cls");
  14.     cout << "馬場大廳-----------" << endl;
  15.     cout << "馬荷包餘額:" << balance<<"\n<1> 儲值 <2>下注 <3>離開\n請選擇:";
  16.     cin >> choose;
  17.     switch (choose)
  18.     {
  19.         case 1:
  20.             cout << "請輸入儲值金額:";cin >> plus;
  21.             if (plus <= 0)
  22.             {
  23.                 cout << "輸入錯誤,即將返回大廳" << endl;
  24.                 _sleep(1500);
  25.                 goto re;
  26.             }
  27.             balance += plus;plus = 0;
  28.             cout << "已儲值" << endl;
  29.             goto re;
  30.             break;
  31.         case 2:
  32.             cout << "請選擇下注金額:";cin >> plus;
  33.             lost+=plus;
  34.             if (plus > balance||plus<=0)
  35.             {
  36.                 cout << "輸入錯誤,即將返回大廳" << endl;
  37.                 _sleep(1500);
  38.                 goto re;
  39.             }
  40.             cout << "<1>◆ <2>★ <3>▲ <4>●\n請選擇馬匹:";cin >> horse;
  41.             if (horse >= 5 || horse <= 0)
  42.             {
  43.                 cout << "輸入錯誤,即將返回大廳" << endl;
  44.                 _sleep(1500);
  45.                 goto re;
  46.             }
  47.             horse = horse - 1;
  48.             break;
  49.         case 3:
  50.              num=-lost+win;
  51.              if(num<0)
  52.              cout<<"你今天共陪了:"<<-num<<"元"<<endl;
  53.              else
  54.             cout << "你的馬錢包金額" << balance << "元已轉至你的錢包\n" << endl;
  55.             system("pause");
  56.             return 0;
  57.     }
  58.     cout << "超坑錢賽馬場" << endl;
  59.     cout << "-------------------------------------------------------------------------|終點";
  60.     _sleep(2000);
  61.     while (w <= 71)
  62.     {
  63.         cout << "比賽進行中" << endl;
  64.         cout << "-------------------------------------------------------------------------|終點" << endl;
  65.         steps[rand() % 4] += 1;
  66.         ran = rand() % 4;
  67.         w = steps[ran];
  68.         for (int u = 0;u <= 3;u++)
  69.         {
  70.             for (int s = 0;s <= steps[u];s++)
  71.             {
  72.                 cout << " ";
  73.             }
  74.             cout << shape[u] << endl;
  75.         }
  76.         _sleep(1);
  77.         if (w == 71)
  78.         {
  79.             cout << shape[ran] << "勝利!\n" << endl;
  80.             if (ran == horse)
  81.             {
  82.                 cout << "你選擇的馬匹勝利了!\n" << "你共下注了:" << plus << "元\n恭喜賺了"
  83.                     << plus * 9 << "元" << endl;
  84.                 balance += plus * 10;
  85.                 win+=plus*10;
  86.                 plus = 0;
  87.                 _sleep(2000);
  88.                  goto re;
  89.             }
  90.             else
  91.             {
  92.                 cout << "你選擇的馬匹並沒有贏...\n" << "你共賠了:" << plus << "元" << endl;
  93.                 balance -= plus;lost+=plus;plus=0;
  94.                 _sleep(2000);
  95.             goto re;
  96.             }
  97.         }
  98.         system("cls");
  99.     }
  100. }
複製代碼

TOP

返回列表