Guest_imported
New member
- Jan 1, 1970
- 0
Hi, I have an Stack object a hand that has 5 cards. I was wondering how I can remove one card at a time.
class TryDeal
{
public static void main(String[] args)
{
CardDeck deck = new CardDeck();
deck.shuffle();
Hand myHand = deck.dealHand(5);
Hand yourHand = deck.dealHand(5);
}
}
Thanks in advance........gemann
class TryDeal
{
public static void main(String[] args)
{
CardDeck deck = new CardDeck();
deck.shuffle();
Hand myHand = deck.dealHand(5);
Hand yourHand = deck.dealHand(5);
}
}
Thanks in advance........gemann