Skills
JavaCompany
San Francisco State UniversityShort Description and Poker rules: *
- Video poker is also known as draw poker.
- The dealer uses a 52-card deck, which is played fresh after each playerHand.
- The player is dealt one five-card poker playerHand.
- After the first draw, which is automatic, you may hold any of the cards and draw
- again to replace the cards that you haven’t chosen to hold.
- Your cards are compared to a table of winning combinations.
- The object is to get the best possible combination so that you earn the highest
- payout on the bet you placed. *
- Winning Combinations
- Jacks or Better: a pair pays out only if the cards in the pair are Jacks,
- Queens, Kings, or Aces. Lower pairs do not pay out.
- Two Pair: two sets of pairs of the same card denomination.
- Three of a Kind: three cards of the same denomination.
- Straight: five consecutive denomination cards of different suit.
- Flush: five non-consecutive denomination cards of the same suit.
- Full House: a set of three cards of the same denomination plus
- a set of two cards of the same denomination.
- Four of a kind: four cards of the same denomination.
- Straight Flush: five consecutive denomination cards of the same suit.
- Royal Flush: five consecutive denomination cards of the same suit,
- starting from 10 and ending with an ace /
/* This is the video poker game class.
- It uses Decks and Card objects to implement video poker game.
- Please do not modify any data fields or defined methods
- You may add new data fields and methods
- Note: You must implement defined methods */