Create two parallel arrays that represent a standard deck


Problem

Create two parallel arrays that represent a standard deck of 52 playing cards. One array is numeric and holds the values 1 through 13 (representing Ace, 2 through 10, Jack, Queen, and King). The other array is a string array and holds suits ("Clubs", "Diamonds", "Hearts", and "Spades"). Create the arrays so that all 52 cards are represented. Create a War card game that randomly selects two cards (one for the player and one for the computer) and declares a winner or a tie based on the numeric value of the two cards. The game should play for 26 rounds, dealing a full deck with no repeated cards. For this game, assume that the lowest card is the Ace. Display the values of the player's and computer's cards, compare their values, and determine the winner. When all the cards in the deck are exhausted, display a count of the number of times the player wins, the number of times the computer wins, and the number of ties.

Here are some

• Move every higher-positioned card in the deck "down" one to fill in the gap. In other words, if the player's first random number is 49, select the card at position 49 (both the numeric value and the string), move the card that was in position 50 to position 49, and move the card that was in position 51 to position 50. Only 51 cards remain in the deck after the player's first card is dealt, so the available card array is smaller by one.

• In the same way, randomly select a card for the computer and "remove" the card from the deck.

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Create two parallel arrays that represent a standard deck
Reference No:- TGS02647073

Expected delivery within 24 Hours