返回列表 發帖

賽馬程式 (四)

加入首頁選單, 新增買入的功能, 執行畫面如下:
可用餘額: 0 元
(1)買入  (2)下注  (3)離開  請選擇: 1
買入: 200

在使用者輸入數值後, 畫面更新如下:
可用餘額: 200 元
(1)買入  (2)下注  (3)離開  請選擇:
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n=1,balance=0;
  7.     re1:
  8.     int a=0, b=0, c=0, d=0, r, option, buyin;
  9.     system("cls");
  10.     cout<<"「好事成雙」賽馬場 第 "<<n<<" 局"<<endl;
  11.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  12.     cout<<"◆"<<endl;
  13.     cout<<"★"<<endl;
  14.     cout<<"▲"<<endl;
  15.     cout<<"●"<<endl;
  16.     cout<<endl;
  17.     cout<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  18.     cout<<"(1)買入  (2)下注  (3)離開  請選擇: ";
  19.     cin>>option;
  20.     if(option==1)
  21.     {
  22.         cout<<"買入: ";
  23.         cin>>buyin;
  24.         balance+=buyin;   //balance=balance+buyin
  25.         goto re1;
  26.     }
  27.     system("pause");
  28.     system("cls");
  29.     srand(time(NULL));
  30.     while(a!=75 && b!=75 && c!=75 && d!=75)
  31.     {
  32.         r=rand()%4;   //產生0~3之隨機亂數
  33.         if(r==0)
  34.             a++;
  35.         else if(r==1)
  36.             b++;
  37.         else if(r==2)
  38.             c++;
  39.         else
  40.             d++;
  41.         cout<<"比賽進行中"<<endl;
  42.         cout<<"------------------------------------------------------------------------| 終點"<<endl;
  43.         for(int i=1; i<=a; i++)
  44.             cout<<" ";
  45.         cout<<"◆"<<endl;
  46.         for(int i=1; i<=b; i++)
  47.             cout<<" ";
  48.         cout<<"★"<<endl;
  49.         for(int i=1; i<=c; i++)
  50.             cout<<" ";
  51.         cout<<"▲"<<endl;
  52.         for(int i=1; i<=d; i++)
  53.             cout<<" ";
  54.         cout<<"●"<<endl;   
  55.         system("cls");      
  56.     }
  57.     cout<<"比賽結束! 由 ";
  58.     if(a==75)
  59.         cout<<"◆";
  60.     else if(b==75)
  61.         cout<<"★";
  62.     else if(c==75)
  63.         cout<<"▲";
  64.     else
  65.         cout<<"●";
  66.     cout<<" 先馳得點!"<<endl;
  67.     cout<<"------------------------------------------------------------------------| 終點"<<endl;
  68.     for(int i=1; i<=a; i++)
  69.         cout<<" ";
  70.     cout<<"◆"<<endl;
  71.     for(int i=1; i<=b; i++)
  72.         cout<<" ";
  73.     cout<<"★"<<endl;
  74.     for(int i=1; i<=c; i++)
  75.         cout<<" ";
  76.     cout<<"▲"<<endl;
  77.     for(int i=1; i<=d; i++)
  78.         cout<<" ";
  79.     cout<<"●"<<endl;
  80.     system("pause");
  81.     n++;
  82.     goto re1;
  83.     system("pause");
  84.     return 0;   
  85. }
複製代碼

返回列表