Homework Help! Urgent!

xscarsofdesirex

Beta member
Messages
1
Homework Help! Urgent! (Java)

Probably a very simple programfor Java, but I am completely stumped.
Any help in coding (even hints) for this would be GREATLY appreciated.
If you would like to contact me directly, my AIM is XscarsofdesireX.


Write a class called Card where each object represents a card. The class should have three instance variables.
int myNum (stores a value 1 to 52)
String mySuit (suit of the card- to be determined by myNum)
String myValue (value of the card -1,....10,Jack, Queen, King, Ace)
(use integer division for mySuit and % for myValue)

The class should have a setValue() and setSuit(). They should be called in the constructor.

Then write a class called DeckOfCards that holds 52 objects of type cards. Write methods that will assign each card a different number 1 to 52, will shuffle the deck, will deal a card, and tell how many cards are left.

Create a driver that will shuffle the deck, then pring out as many cards as the user wants dealt from the top of the deck.
 
Back
Top Bottom