返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.           int round = 1;
  8.         srand(time(NULL));
  9.         string shape[] = { "◆","★","▲","●" };
  10.         re:
  11.         int steps[] = {0,0,0,0};
  12.         cout<<"第"<<round<<"局"<<endl;
  13.         cout << "超坑錢賽馬場" << endl;
  14.         cout << "-------------------------------------------------------------------------|終點";
  15.         _sleep(2000);
  16.         int w = 0;int plus;
  17.         while (w <= 71)
  18.         {
  19.                 cout << "比賽進行中" << endl;
  20.                 cout << "-------------------------------------------------------------------------|終點" << endl;
  21.                 steps[rand() % 4] += 1;
  22.                 w = steps[rand() % 4];
  23.                 for (int s = 0;s <= steps[0];s++)
  24.                         cout << " ";
  25.                 cout << shape[0] << endl;
  26.                 for (int s = 0;s <= steps[1];s++)
  27.                         cout << " ";
  28.                 cout << shape[1] << endl;;
  29.                 for (int s = 0;s <= steps[2];s++)
  30.                         cout << " ";
  31.                 cout << shape[2] << endl;
  32.                 for (int s = 0;s <= steps[3];s++)
  33.                         cout << " ";
  34.                 cout << shape[3] << endl;
  35.                 _sleep(10);
  36.                 if (w ==71)
  37.                 {
  38.                       round++;
  39.                       cout<<"由"<<shape[rand() % 4]<<"獲勝" <<endl;
  40.                       _sleep(1000);
  41.                       system("pause");
  42.                       goto re;
  43.                 }
  44.                 system("cls");
  45.         }
  46. }
複製代碼

TOP

返回列表