Question: Answer the question in the picture Define a Java class for a card. This is the kind of card you have in a card game
Answer the question in the picture
Define a Java class for a card. This is the kind of card you have in a card game in that it has a value and a suit. Cards should be printed as the value concatenated to the suit (e.g. 5D, 10C, JD, AS). Two cards are equal if they have the same suit and the same value. Include a method indicating if two cards have the same suit and another indicating if they have the same value. Call than equalSuit and equalValue respectively. Define getters and setters. You should submit a file named Card.java that contains the Card class. You should submit a file called App.java that contains main and tests all the capability of the card class. You should submit a text file with example input/output (from the terminal)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
