Write a program that plays a simple card game with one human

Assignment Help JAVA Programming
Reference no: EM132080201

Need help writing this java program here are the directions/explanation:

Your task is to write a program that plays a simple card game with one human player and one computer player. The game uses a deck of 52 cards. Each card has a value (either a number 2 through 10 or a label jack, queen, king, or ace) and a suit (hearts, diamonds, clubs or spades).

The objective of the game is to get four cards with the same value. For example, the 8 of hearts, diamonds, clubs and spades.

At the beginning of the game, the cards are shuffled and each player is given four cards. The remaining cards are placed into a queue called the "draw pile." There is another pile called the "discard pile" that starts out empty. The discard pile is a stack (an ArrayDeque in Java).

If neither player has been dealt a winning hand, the players take turns until one of them wins. At each turn the player can either draw a new card from the draw pile or pick up the top card on the discard pile. In this game the human player always goes first.

Because the discard pile starts out empty, the human player must initially pick up a card from the draw pile. After that, the human player must select a card to put into the discard pile.

This can either be the card he drew or one that was already in his hand. If the human player now has four cards with the same value, he wins. Otherwise, it is the computer's turn. The computer can either draw a card from the draw pile or pick up the card that the human player put onto the discard pile.

Then the computer player must place one of its cards onto the discard pile. If the computer player now has four cards with the same value, it wins. Otherwise, it is the human player's turn; however, this time the human player can either take a card from the draw pile or pick up the card that the computer player put onto the discard pile.

This process repeats until one player wins. At that point, the game should display the message "You win!" if the human player won or "I win!" if the computer player won. The program should then terminate. An example execution of this game is shown in the program output below

here is what the output should look like:

Your cards are:

Queen of Hearts

Seven of Hearts

Eight of Hearts

Seven of Diamonds

The discard pile is currently empty -- you must draw a card

You drew the Five of Spades

Now your cards are:

1. Queen of Hearts

2. Seven of Hearts

3. Eight of Hearts

4. Seven of Diamonds

5. Five of Spades

Which one do you want to discard?

1 I will draw a new card.

I will discard the Two of Spades

Your cards are:

Five of Spades

Seven of Hearts

Eight of Hearts

Seven of Diamonds

The top card in the discard pile is the Two of Spades

Do you want to pick up the Two of Spades (1) or draw a card (2)?

2

You drew the Queen of Diamonds

Now your cards are:

1. Five of Spades

2. Seven of Hearts

3. Eight of Hearts

4. Seven of Diamonds

5. Queen of Diamonds

Which one do you want to discard?

1

I will pick up the Five of Spades

I will discard the Six of Diamonds

Your cards are:

Queen of Diamonds

Seven of Hearts

Eight of Hearts

Seven of Diamonds

The top card in the discard pile is the Six of Diamonds

Do you want to pick up the Six of Diamonds (1) or draw a card (2)?

2

You drew the Five of Diamonds Now your cards are:

1. Queen of Diamonds

2. Seven of Hearts

3. Eight of Hearts

4. Seven of Diamonds

5. Five of Diamonds Which one do you want to discard?

1

I will draw a new card.

I will discard the King of Spades

Your cards are:

Five of Diamonds

Seven of Hearts

Eight of Hearts

Seven of Diamonds

The top card in the discard pile is the King of Spades

Do you want to pick up the King of Spades (1) or draw a card (2)?

2

You drew the Nine of Diamonds Now your cards are:

1. Five of Diamonds

2. Seven of Hearts

3. Eight of Hearts

4. Seven of Diamonds

5. Nine of Diamonds

Which one do you want to discard?

5

Your program will be graded according to this rubric (each item is worth one point):

• The program creates the deck of cards, shuffles it, and gives each player four cards.

• The human player is notified what card is on top of the discard pile (which is implemented as a stack), and he can either take that card or draw a card from the draw pile (which is implemented as a queue).

• The human player can discard either a card that was already in his hand or the card he just acquired during his turn. This card is then placed on top of the discard pile.

• The computer player is capable of both taking a card from the draw pile or picking up the card on top of the discard pile, and it does not do the same thing every time. It may choose which to do either randomly or according to some strategy, whichever you prefer.

• The computer player does not always discard the same card every time (i.e. it doesn't always discard the card it just picked up). It may choose which card to discard randomly or according to some strategy, whichever you prefer.

• If the draw pile becomes empty before either player has won the game, all of the cards in the discard pile are shuffled and moved back to the draw pile.

• The program correctly recognizes when someone wins and displays the appropriate message.

Reference no: EM132080201

Questions Cloud

Create your own test files to test the functionality : This method will take a File object as input and use File I/O to calculate and return the standard deviation of a series of numbers found inside of a file.
Marginal cost predicts about the cost of producing : Tell what the marginal cost predicts about the cost of producing 2 additional units. The cost of producing 2 additional units is $
How to form a system of equations : I am struggling with how to form a system of equations. One equation represents the amount of final mixture required and the other represents
Find the equation of the tangent line to the graph : (a) Find the equation of the tangent line to the graph f(x)= ln x at the point where x=1.
Write a program that plays a simple card game with one human : Your task is to write a program that plays a simple card game with one human player and one computer player. The game uses a deck of 52 cards.
Find the equation of the tangent line to the graph : (a) Find the equation of the tangent line to the graph f(x)= ln x at the point where x=1.
Draw the shaft shown in figure : COMPUTER-BASED TECHNOLOGY - Teesside University - FURTHER TECHNIQUES - Produce an A4-size standard drawing frame
Marginal cost at a production level : For the cost function C=6000+100lnq (in dollars), find the cost and marginal cost at a production level of 200.
A program to define function has 2 float parameters : This should be program defined function and has 2 float parameters when excites prints the 2 parameters then return to the larger value.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Write a program that displays all the numbers

Write a program that displays all the numbers from 100 to 200, ten per line, that are divisible by 5 or 6, but not both. Numbers are separated by exactly one space

  Applet to converts a character to a corresponding integer

Design an applet Conversion.java that converts a character to a corresponding integer, and vice versa. The integer corresponding to a character is its ASCII code.

  Assignment on java applets and activex controls

Go online and search for information about security threats posed by Java applets and ActiveX controls. Note that most of these programs are small in size and downloaded onto computers over the Internet.

  Provides a method named ispalindrome

Write a complete Java program that provides a method named isPalindrome, which takes aQueue of integers as a parameter and returns true if the numbers in the Queue represent a palindrome (and false otherwise). The empty Queue should be considered ..

  Build a gui based program in java

The purpose of this assignment is to practice building a GUI based program in Java, to use HashMaps and file IO.

  Create a software artifact by applying the methodologies

Create a software artifact by applying the methodologies of advanced object- oriented programming to a requirements speciation. Select and apply a design pattern from one of the major design patterns to solve a given problem.

  Why the java is called platform independent

Why the Java is called platform independent? Discuss.

  Design an abstract data type in java

Design an abstract data type in Java that represents a musical pitch

  Which collection class allows you to access its elements

Which collection class allows you to access its elements by associating a key with an element's value, and provides synchronization?

  Using a linked implementation of graph write a method

Write a method that takes two nodes as input and returns true if joining an edge between these two nodes, forms a duplicate path to one of the input nodes within the graph.

  Discuss the structural design patterns

Discuss the structural design patterns that you may use to help you structure large JavaScript applications and improve your performance

  Computer program that inputs a degree of difficulty

computer program that inputs a degree of difficulty and seven judges' scores and outputs the overall score for that dive. The program should ensure

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd