- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- #include <chrono>
- #include <thread>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int steps[] = {0,0,0,0};
- string shape[] = { "◆","★","▲","●" };
- cout << "超坑錢賽馬場" << endl;
- cout << "-------------------------------------------------------------------------|終點";
- this_thread::sleep_for(std::chrono::milliseconds(2000));
- int w = 0;int plus;
- while (w <= 71)
- {
- cout << "比賽進行中" << endl;
- cout << "-------------------------------------------------------------------------|終點" << endl;
- steps[rand() % 4] += 1;
- w = steps[rand() % 4];
- for (int s = 0;s <= steps[0];s++)
- cout << " ";
- cout << shape[0] << endl;
- for (int s = 0;s <= steps[1];s++)
- cout << " ";
- cout << shape[1] << endl;;
- for (int s = 0;s <= steps[2];s++)
- cout << " ";
- cout << shape[2] << endl;
- for (int s = 0;s <= steps[3];s++)
- cout << " ";
- cout << shape[3] << endl;
- this_thread::sleep_for(std::chrono::milliseconds(1));
- if (w ==71)
- {
- system("pause");
- return 0;
- }
- system("cls");
- }
- }
複製代碼 |