Question: Please Use Java to Complete These Questions. Suppose, 4 Players are playing a game of cards. Players are distributed cards from a standard 52-cards deck
Please Use Java to Complete These Questions.
Suppose, 4 Players are playing a game of cards. Players are distributed cards from a standard 52-cards deck randomly. Before starting the game each player sorts the cards in their hand for convenience during the play. While sorting, a player first looks at the suits and groups same suits together. For this certain version of that game, the order of the value of suits is as follows: a. spades b. hearts c. diamonds d. clubs Among the same suit of cards the order of cards: A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2 Write a class Card Write a class Player that has a. An array of 13 cards b. A method to sort the array of cards (you can use the Insertion Sort shown in the class) A sample test program is given here: package hw.cse214.cards: public class CardSortingTest { public static void main(String[] args) { String[] cardsForPlayer1- { "S4", "D8", "C4", "D3", "DS", "DJ", "S3", "D4", "DA", "SJ", "D7", "H10", "D6" }: Card[] cards = new Card [13]: for (int i - 0: i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
