(Card Shuffling and Dealing) Modify the application of Figs. to use Face and Suit enumerations to represent the faces and suits of the cards. Declare each of these enumerations as a public type in its own source-code file. Each Card should have a Face and a Suit instance variable. These should be initialized by the Card constructor. In class DeckOfCards, create an array of Faces that is initialized with the names of the constants in the Face enumeration and an array of Suits that is initialized with the names of the constants in the Suit enumeration. [Note: When you output an enumeration constant as a String, the name of the constant is displayed.]
Fig. | Card class represents a playing card.


Fig. | Deck Of Cards class represents a deck of playing cards.


Fig. | Card shuffling and dealing.

We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.