返回列表 發帖
  1. using namespace std;
  2. int main()
  3. {
  4.           int round = 1;
  5.           int buy=0,balance=0,option;
  6.         srand(time(NULL));
  7.         string shape[] = { "◆","★","▲","●" };
  8.         re:
  9.         cout<<"你的餘額:"<<balance<<endl;
  10.         cout<<"買入<1> 下注<2> 不玩了<3>"<<endl;
  11.         cin>>option;
  12.         if(option=1)
  13.         {
  14.                     cout<<"輸入金額:";
  15.                     cin>>buy;
  16.                     balance+=buy;
  17.                     goto re;
  18.         }
  19.         else
  20.                    cout<<"已退出遊戲,你的餘額為:"<<balance<<endl;
  21.         int steps[] = {0,0,0,0};
  22.         cout<<"第"<<round<<"局"<<endl;
  23.         cout << "超坑錢賽馬場" << endl;
  24.         cout << "-------------------------------------------------------------------------|終點";
  25.         _sleep(2000);
  26.         int w = 0;int plus;
  27.         while (w <= 71)
  28.         {
  29.                 cout << "比賽進行中" << endl;
  30.                 cout << "-------------------------------------------------------------------------|終點" << endl;
  31.                 steps[rand() % 4] += 1;
  32.                 w = steps[rand() % 4];
  33.                 for (int s = 0;s <= steps[0];s++)
  34.                         cout << " ";
  35.                 cout << shape[0] << endl;
  36.                 for (int s = 0;s <= steps[1];s++)
  37.                         cout << " ";
  38.                 cout << shape[1] << endl;;
  39.                 for (int s = 0;s <= steps[2];s++)
  40.                         cout << " ";
  41.                 cout << shape[2] << endl;
  42.                 for (int s = 0;s <= steps[3];s++)
  43.                         cout << " ";
  44.                 cout << shape[3] << endl;
  45.                 _sleep(10);
  46.                 if (w ==71)
  47.                 {
  48.                       round++;
  49.                       cout<<"由"<<shape[rand() % 4]<<"獲勝" <<endl;
  50.                       _sleep(1000);
  51.                       system("pause");
  52.                       goto re;
  53.                 }
  54.                 system("cls");
  55.         }
  56. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.           int round = 1;
  8.           int buy=0,play,balance=0,option,player;
  9.         srand(time(NULL));
  10.         string shape[] = { "◆","★","▲","●" };
  11.         re:
  12.         cout<<"你的餘額:"<<balance<<endl;
  13.         cout<<"買入<1> 下注<2> 不玩了<3>"<<endl;
  14.         cin>>option;
  15.         if(option==1)
  16.         {
  17.                     cout<<"輸入金額:";
  18.                     cin>>buy;
  19.                     if(buy<=0)
  20.                     {
  21.                          cout<<"輸入錯誤"<<endl;
  22.                          _sleep(1500);
  23.                          system("cls");
  24.                          goto re;
  25.                     }
  26.                     balance+=buy;
  27.                     buy=0;
  28.                     goto re;
  29.         }
  30.         else if(option==2)
  31.         {
  32.                     cout<<"下注金額:";
  33.                     cin>>buy;
  34.                     play+=buy;
  35.                     balance-=buy;
  36.                     if(buy<=0)
  37.                     {
  38.                          cout<<"餘額不足"<<endl;
  39.                          _sleep(1500);
  40.                          system("cls");
  41.                          goto re;
  42.                     }
  43.                     if(buy<=0)
  44.                     {
  45.                               cout<<"輸入錯誤"<<endl;
  46.                          _sleep(1500);
  47.                          system("cls");
  48.                          goto re;
  49.                     }
  50.                     cout<<"請選擇馬匹:◆<1>★<2>▲<3>●<4>";
  51.                     cin>>player;
  52.                      }
  53.                     else
  54.                     {
  55.                    cout<<"已退出遊戲,你的餘額為:"<<balance<<endl;
  56.                    _sleep(3000);
  57.                    return 0;
  58.                    }
  59.         int steps[] = {0,0,0,0};
  60.         cout<<"第"<<round<<"局"<<endl;
  61.         cout << "超坑錢賽馬場" << endl;
  62.         cout << "-------------------------------------------------------------------------|終點";
  63.         _sleep(2000);
  64.         int w = 0;int plus;
  65.         while (w <= 71)
  66.         {
  67.                 cout << "比賽進行中" << endl;
  68.                 cout << "-------------------------------------------------------------------------|終點" << endl;
  69.                 steps[rand() % 4] += 1;
  70.                 w = steps[rand() % 4];
  71.                 for (int s = 0;s <= steps[0];s++)
  72.                         cout << " ";
  73.                 cout << shape[0] << endl;
  74.                 for (int s = 0;s <= steps[1];s++)
  75.                         cout << " ";
  76.                 cout << shape[1] << endl;;
  77.                 for (int s = 0;s <= steps[2];s++)
  78.                         cout << " ";
  79.                 cout << shape[2] << endl;
  80.                 for (int s = 0;s <= steps[3];s++)
  81.                         cout << " ";
  82.                 cout << shape[3] << endl;
  83.                 _sleep(10);
  84.                 if (w ==71)
  85.                 {
  86.                       round++;
  87.                       cout<<"由"<<shape[rand() % 4]<<"獲勝" <<endl;
  88.                       _sleep(1000);
  89.                       if((rand()%4)+1==player)
  90.                       {
  91.                       balance+=buy*100;
  92.                       system("pause");
  93.                       goto re;
  94.                       }
  95.                       cout<<"什麼?你沒有賭注他?"<<endl;
  96.                       buy==0;
  97.                       goto re;
  98.                 }
  99.                 system("cls");
  100.         }
  101. }
複製代碼

TOP

返回列表