返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int round=1,balance=0,used=0;
  8.     int option,buy,bet,player;
  9.     re:
  10.     system("cls");
  11.     srand(time(NULL));
  12.     string p[]={"◆","★","▲","●"};
  13.     int s[]={0,0,0,0};
  14.     int r=0;
  15.     cout<<"「好事成霜」賽馬場  第"<<round<<"局"<<endl;
  16.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  17.     for(int i=0; i<4; i++)
  18.         cout<<p[i]<<endl;
  19.         cout<<endl<<"可用餘額: "<<balance<<"元"<<endl<<endl;
  20.             cout<<"(1)買入 (2)下注 (3)離開 請選擇: ";
  21.             cin>>option;
  22.             if(option==1){
  23.             cout<<endl<<"買入: ";
  24.             cin>>buy;
  25.             if(buy<=0){
  26.             cout<<"輸入錯誤";
  27.             _sleep(1500);
  28.             goto re;
  29.             }
  30.             balance=balance+buy;
  31.             goto re;
  32.             }
  33.             else if(option==2){
  34.             cout<<endl<<"要下注多少: ";
  35.             cin>>bet;
  36.             if(bet<=0){
  37.             cout<<"輸入錯誤";
  38.             _sleep(1500);
  39.             goto re;
  40.             }
  41.             else if(bet>balance){
  42.             cout<<"可用餘額不足,請先買入!";
  43.             _sleep(1500);
  44.             goto re;
  45.             }
  46.             else
  47.             cout<<"(1)◆(2)★(3)▲(4)●  請選擇:";
  48.             cin>>player;
  49.             player=player-1;
  50.             goto start;
  51.             }
  52.             else if(option==3){
  53.             goto end;     
  54.             }
  55.             else
  56.             cout<<"輸入錯誤"<<endl;
  57.                         _sleep(1500);
  58.                         goto re;
  59.     start:        
  60.     cout<<"準備開始比賽"<<endl<<endl;
  61.     system("pause");
  62.     system("cls");
  63.     while(s[r]<=73)
  64.     {
  65.         r=rand()%4;   
  66.         s[r]++;
  67.         cout<<"比賽進行中"<<endl;
  68.         cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  69.         for(int i=0; i<4; i++)
  70.         {
  71.             for(int j=0; j<s[i]; j++)
  72.                 cout<<" ";
  73.             cout<<p[i]<<endl;
  74.         }
  75.         _sleep(10);
  76.         system("cls");
  77.     }
  78.     cout<<"比賽結束  由"<<p[r]<<"勝出"<<endl;
  79.     cout<<"-------------------------------------------------------------------------| 終點"<<endl;
  80.     for(int i=0; i<4; i++)
  81.     {
  82.            
  83.         for(int j=0; j<s[i]; j++)
  84.             cout<<" ";
  85.         cout<<p[i]<<endl;
  86.     }
  87.     if(player<r or player>r)
  88.         {
  89.           balance-=bet;
  90.     cout<<"損失"<<bet<<"元"<<endl<<endl;
  91.     used=used-bet;
  92.         }
  93.         else
  94.                 {
  95.                 cout<<"恭喜贏得"<<bet*3<<"元"<<endl<<endl;
  96.                 balance+=bet*3;
  97.                 used=used+bet*3;
  98.                 }
  99.     system("pause");
  100.     round++;
  101.     goto re;
  102.     end:
  103.     if(used>0)
  104.     cout<<"恭喜你!這次總共贏了"<<used<<"元!"<<endl;
  105.     else if(used<0)
  106.     cout<<"不好意思!讓你損失了"<<-used<<"元!"<<endl;
  107.     else
  108.     cout<<"沒輸沒贏!全身而退!"<<endl;
  109.     _sleep(1500);
  110.     system("pause");
  111.     return 0;
  112. }
複製代碼

TOP

返回列表