返回列表 發帖
  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 jk=0  ;    //選項
  11.         int buy,player,bet;  //儲值金額
  12.     re:
  13.     system("cls");
  14.     srand(time(NULL));
  15.     int s[]={0,0,0,0};        //存放進度用的
  16.     string p[]={"◆","★","▲","●"};        //存放馬用的
  17.     int r=0;
  18.     cout<<"「好事成雙」賽馬場 第"<<round<<"局"<<endl;
  19.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  20.     for(int i=0; i<4; i++)
  21.         cout<<p[i]<<endl;        //把馬印出來
  22.    
  23.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  24.     cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  25.     cin>>option;
  26.     if(option==1){
  27.             //買入
  28.             cout<<"買入: ";
  29.             cin>>buy;
  30.             balance=balance+buy;
  31.       //儲值
  32.             goto re;
  33.         }
  34.     else if(option==3)
  35.     {
  36.         goto end;
  37.     }
  38.     else if(option==2){
  39.          cout<<"下注對象:";
  40.          cin>>player;
  41.          cout<<"下注金額:";
  42.          cin>>bet;
  43.          if(bet>balance){
  44.              cout<<"error"<<endl;
  45.               _sleep(500);
  46.              goto re;
  47.             
  48.              }
  49.     }
  50.     //輸入等於1執行買入(儲值)

  51.     else if(option>3 || option<1)
  52.     {
  53.          cout<<"錯誤"<<endl;
  54.          cout<<"請重新輸入"<<endl;
  55.           _sleep(500);
  56.          goto re;
  57.     }
  58.   system("pause");
  59.     system("cls");        //清空畫面
  60.     while(s[r]<=73)        //開始賽馬
  61.     {
  62.         r=rand()%4;   //0~3        (抽馬)
  63.         s[r]++;        //看電腦抽到哪隻馬就+1
  64.         cout<<"比賽進行中"<<endl;
  65.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  66.         for(int i=0; i<4; i++)
  67.         {
  68.             for(int j=0; j<s[i]; j++)
  69.                 cout<<" ";        //印空格(看進度是多少就印多少空格)
  70.             cout<<p[i]<<endl;        //把馬印出來
  71.         }
  72.         //_sleep(50);
  73.         system("cls");
  74.     }
  75.     cout<<"比賽結束!  由 "<<p[r]<<" 先馳得點!"<<endl;
  76.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  77.     for(int i=0; i<4; i++)
  78.     {
  79.            
  80.         for(int j=0; j<s[i]; j++)
  81.             cout<<" ";
  82.         cout<<p[i]<<endl;
  83.     }
  84.     if(r==player-1){
  85.              cout<<"u win"<<endl;
  86.              balance=balance+bet*3;
  87.              cout<<"stonks+"<<bet*3<<endl;
  88.              jk=jk+bet*3;
  89.              }
  90.     else
  91.     {
  92.         cout<<"u lose lol"<<endl;
  93.         balance=balance-bet;
  94.         cout<<"-"<<bet<<endl;
  95.         jk=jk-bet;
  96.     }  
  97.         
  98.                               
  99.     system("pause");
  100.     round++;        //局數+1
  101.     goto re;
  102.     end:
  103.         if(jk<0)
  104.             cout<<"lol lose "<<-jk<<endl;
  105.         else if(jk>0)
  106.             cout<<"oh shit u win "<<jk<<endl;
  107.         else
  108.             cout<<"洴艏"<<endl;
  109.         cout<<"88"<<endl;
  110.         _sleep(1000);
  111.     return 0;
  112. }
複製代碼

TOP

返回列表