Programming Homework Help

CISS 243 Bethesda University of California Deck Of Cards Game Project

 

Let’s play cards. Using the class provided, create another class called DeckOfCards. This class will maintain a deck of cards using a Stack of Card objects. There should be no duplicate cards in the deck. The DeckOfCards class should provide methods to:

  • Populate the deck (constructor)
  • Shuffle the deck of cards (may need more stacks or other structures in the method).
  • A method to deal a card.
  • Method provides the number of cards remaining in the deck.

Another class will be needed called PlayerHand. This class will maintain a players hand in a game of Black Jack. Limit the hand to 5 cards. Provide

  • Method to add cards to the hand
  • Method to get cards in the hand.
  • Use a Queue to store the cards in.

The driver of the program will control the game between just two players. Dealing (DeckOfCards) the cards to the players (PlayerHand). It will also determine who the winner is. Player should be able to take hits and indicate when they are done. Once both players are done main will determine the winner.

Can use the STL versions of the Stack and Queue.

Card.h

Card.cpp