- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int round = 1;
- srand(time(NULL));
- string shape[] = { "◆","★","▲","●" };
- re:
- int steps[] = {0,0,0,0};
- cout<<"第"<<round<<"局"<<endl;
- cout << "超坑錢賽馬場" << endl;
- cout << "-------------------------------------------------------------------------|終點";
- _sleep(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;
- _sleep(10);
- if (w ==71)
- {
- round++;
- cout<<"由"<<shape[rand() % 4]<<"獲勝" <<endl;
- _sleep(1000);
- system("pause");
- goto re;
- }
- system("cls");
- }
- }
複製代碼 |