Question
Using Java. Design a program to simulate the BlackJack game. Rules: Use 52-card decks. Aces is counted as 1, 2 to 9 according to pip
Using Java.
Design a program to simulate the BlackJack game.
Rules:
Use 52-card decks.
Aces is counted as 1, 2 to 9 according to pip value, and tens and face cards count as ten points.
The value of a hand is the sum of the point values of the individual cards. Except, a "blackjack" is the highest hand, consisting of an ace and any 10-point card, and it outranks all other 21-point hands.
The dealer will give two cards to the player and two cards to himself.
Deal a card to the player until the player says "no"
Deal a card to dealer as long as the total points of the dealer is less than 17
If the dealer goes over 21 points, then any player who didn't already bust will win.
If the dealer does not bust, then the higher point total between the player and dealer will win.
Repeat the game until the player doesn't want to play. Use a new deck for each round.
Requirements:
1. program must be well-documented
2. must have methods defined (not just main method) in the program
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started