返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. #include <chrono>
  5. #include <thread>
  6. using namespace std;
  7. int main()
  8. {
  9.         srand(time(NULL));
  10.         int steps[] = {0,0,0,0};
  11.         string shape[] = { "◆","★","▲","●" };

  12.         cout << "超坑錢賽馬場" << endl;
  13.         cout << "-------------------------------------------------------------------------|終點";
  14.         this_thread::sleep_for(std::chrono::milliseconds(2000));
  15.         int w = 0;int plus;
  16.         while (w <= 71)
  17.         {
  18.                 cout << "比賽進行中" << endl;
  19.                 cout << "-------------------------------------------------------------------------|終點" << endl;
  20.                 steps[rand() % 4] += 1;
  21.                 w = steps[rand() % 4];
  22.                 for (int s = 0;s <= steps[0];s++)
  23.                         cout << " ";
  24.                 cout << shape[0] << endl;
  25.                 for (int s = 0;s <= steps[1];s++)
  26.                         cout << " ";
  27.                 cout << shape[1] << endl;;
  28.                 for (int s = 0;s <= steps[2];s++)
  29.                         cout << " ";
  30.                 cout << shape[2] << endl;
  31.                 for (int s = 0;s <= steps[3];s++)
  32.                         cout << " ";
  33.                 cout << shape[3] << endl;
  34.                 this_thread::sleep_for(std::chrono::milliseconds(1));
  35.                 if (w ==71)
  36.                 {
  37.                         system("pause");
  38.                         return 0;
  39.                 }
  40.                 system("cls");
  41.         }
  42. }
複製代碼

TOP

返回列表