返回列表 發帖
  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, bet, player;
  11.         // 買入 下注 賭哪隻馬
  12.         int total=0;      //總共買入

  13.     re:
  14.     system("cls");
  15.     srand(time(NULL));
  16.     int s[]={0,0,0,0};        //存放進度用的
  17.     string p[]={"◆","★","▲","●"};        //存放馬用的
  18.     int r=0;
  19.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  20.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  21.     for(int i=0; i<4; i++)
  22.         cout<<p[i]<<endl;        //把馬印出來
  23.    
  24.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  25.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  26.     cin>>option;
  27.     //輸入等於1執行買入(儲值)
  28.         if(option==1){
  29.             //買入
  30.             cout<<"買入: ";
  31.             cin>>buy;
  32.             if(buy<=0){
  33.                     //如果買入小於0
  34.                         cout<<"輸入錯誤!";
  35.             _sleep(1500);        //顯示1.5秒
  36.             goto re;
  37.                 }
  38.             balance=balance+buy;        //儲值
  39.             total=total+buy;
  40.             goto re;
  41.         }
  42.         //輸入等於2執行下注
  43.     else if(option==2)
  44.     {
  45.         cout<<"下注: ";
  46.         cin>>bet;
  47.         if(bet<=0)
  48.         {
  49.                 //如果小於0
  50.             cout<<"輸入錯誤!";
  51.             _sleep(1500);
  52.             goto re;     
  53.         }
  54.         if(bet>balance)
  55.         {
  56.                 //下注錢大於可用餘額代表錢不夠
  57.             cout<<"可用餘額不足,請先買入!";
  58.             _sleep(1500);
  59.             goto re;     
  60.         }
  61.         //OK選馬
  62.         cout<<endl<<"(1)◆ (2)★ (3)▲ (4)● 請選擇: ";
  63.         cin>>player;
  64.         cout<<"比賽即將開始..."<<endl<<endl;         
  65.     }
  66.     //輸入等於3結束
  67.     else if(option==3)
  68.     {
  69.         goto end;         
  70.     }
  71.     else
  72.     {
  73.         cout<<"輸入錯誤!";
  74.         _sleep(1500);
  75.         goto re;
  76.     }
  77.         system("pause");
  78.     system("cls");        //清空畫面
  79.     while(s[r]<=73)        //開始賽馬
  80.     {
  81.         r=rand()%4;   //0~3        (抽馬)
  82.         s[r]++;        //看電腦抽到哪隻馬就+1
  83.         cout<<"比賽進行中"<<endl;
  84.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  85.         for(int i=0; i<4; i++)
  86.         {
  87.             for(int j=0; j<s[i]; j++)
  88.                 cout<<" ";        //印空格(看進度是多少就印多少空格)
  89.             cout<<p[i]<<endl;        //把馬印出來
  90.         }
  91.         _sleep(50);
  92.         system("cls");
  93.     }
  94.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  95.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  96.     for(int i=0; i<4; i++)
  97.     {
  98.            
  99.         for(int j=0; j<s[i]; j++)
  100.             cout<<" ";
  101.         cout<<p[i]<<endl;
  102.     }
  103.     if(player-1==r){
  104.         balance=balance+bet*3;
  105.         cout<<"贏了"<<bet*3<<"元!";
  106.     }
  107.     else{
  108.         balance=balance-bet;
  109.         cout<<"損失"<<bet<<"元!";
  110.     }
  111.     system("pause");
  112.     round++;        //局數+1
  113.     goto re;
  114.    
  115.     end:
  116.     if(total>balance)
  117.     {
  118.         cout<<"不好意思!讓你損失了"<<total-balance<<"元!";
  119.     }
  120.     else if(total=balance)
  121.     {
  122.         cout<<"沒輸沒贏!下次再來喔!";
  123.     }
  124.     else
  125.     {
  126.         cout<<"恭喜你!贏了"<<balance-total<<"元!";
  127.     }
  128.     cout<<endl<<"不玩了? 88~"<<endl;
  129.     _sleep(1500);
  130.    
  131.     return 0;
  132. }
複製代碼

TOP

返回列表