TXT
BlackjackHand.java
By Monica Mills,2014-05-08 09:25
29 views
0
/*
A subclass of the Hand class that represents a hand of cards
in the game of Blackjack. To the methods inherited form Hand,
it adds the method getBlackjackHand(), which returns the value
of the hand for the game of Blackjack.
*/
public class BlackjackHand extends Hand {
public int getBlackjackValue() {
// Returns the value of t..