Question: I'm not looking for the entire code I just need some help getting started as I have been out of java for a little while,

I'm not looking for the entire code I just need some help getting started as I have been out of java for a little while, thanks!
Program Specification: You are to develop a program which emulates a full deck of playing cards. That is 4 suits (Clubs, Spades, Hearts, and Diamonds) and 13 ranks (Ace, 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, King) in each suit. This of course makes for a total of 52 playing cards in the deck Mandatory methods: public static void initDeck (boolean deck) /I set the values of deck to indicate that they are all // present - not dealt yet. public static boolean emptyDeck(booleanI deck.) // returns whether or not all the cards in the deck // have already been dealt. public static int dealCard (boolean deck) // returns a card (an int in the range 0 to 51) at random // that has not been dealt since the deck was initialize // via intDeck. Also notes (in deck) that this card is // no longer available. public static void printCard(int card) /I given a card (an int in the range 0 to 51) prints // an appropriate representation of this card based // on a 1-1 and onto mapping of the set [0, 51] to // the cards described above Rules and Requirements
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
