返回列表 發帖

賽馬程式 (四)

本帖最後由 鄭繼威 於 2023-3-4 20:26 編輯

加入首頁選單, 新增買入(儲值)的功能, 執行畫面如下:

(1)買入 (2)下注 (3)離開 請選擇:

在使用者輸入數值後, 畫面更新如下:
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int round=1;        //局數
  8.         int balance=0;        //餘額
  9.         int option;        //選項
  10.         int buy;    //儲值金額
  11.     re:
  12.     system("cls");
  13.     srand(time(NULL));
  14.     int s[]={0,0,0,0};        //存放進度用的
  15.     string p[]={"◆","★","▲","●"};        //存放馬用的
  16.     int r=0;
  17.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  18.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  19.     for(int i=0; i<4; i++)
  20.         cout<<p[i]<<endl;        //把馬印出來
  21.    
  22.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  23.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  24.     cin>>option;
  25.     //輸入等於1執行買入(儲值)
  26.         if(option==1){
  27.             //買入
  28.             cout<<"買入: ";
  29.             cin>>buy;
  30.             balance=balance+buy;        //儲值
  31.             goto re;
  32.         }
  33.    
  34.         system("pause");
  35.     system("cls");        //清空畫面
  36.     while(s[r]<=73)        //開始賽馬
  37.     {
  38.         r=rand()%4;   //0~3        (抽馬)
  39.         s[r]++;        //看電腦抽到哪隻馬就+1
  40.         cout<<"比賽進行中"<<endl;
  41.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  42.         for(int i=0; i<4; i++)
  43.         {
  44.             for(int j=0; j<s[i]; j++)
  45.                 cout<<" ";        //印空格(看進度是多少就印多少空格)
  46.             cout<<p[i]<<endl;        //把馬印出來
  47.         }
  48.         _sleep(50);
  49.         system("cls");
  50.     }
  51.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  52.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  53.     for(int i=0; i<4; i++)
  54.     {
  55.            
  56.         for(int j=0; j<s[i]; j++)
  57.             cout<<" ";
  58.         cout<<p[i]<<endl;
  59.     }
  60.     system("pause");
  61.     round++;        //局數+1
  62.     goto re;
  63.     return 0;
  64. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表