[Solved] CSE174-program 12- YahtzeeGame

$25

File Name: CSE174-program_12-_YahtzeeGame.zip
File Size: 282.6 KB

SKU: [Solved] CSE174-program 12- YahtzeeGame Category: Tag:
5/5 - (1 vote)

Background:

The intent of this exercise is to write a class (YahtzeeGame) that is a partial implementation of the game of Yahtzee (for more information on this game see Wikipedia). In this game, a player is presented with 5 dice. After throwing the dice, the player gets up to two opportunities to determine which of the 5 dice to throw again. The program displays the various scoring options to the user.

Requirements:

Create a Scanner that is global (as you did in program10) so that the main() and the reroll() methods can both access it. The methods below are required. Each method should be fewer than 30 lines of code. You may write other methods as needed. Those should also each be fewer than 30 lines of code. All of these should be public static

Method Description
void main(String[] args) Creates an int array representing the five dice. Handles the overall flow of the program (asking the user if she wants to play again, for example). Doe not ask the user which dice to reroll (that happens in the reroll method).
void roll(int[] dice) Rolls all five dice by assigning a random integer (1 6 inclusive) to each of the elements in the array
void sort(int[] dice) Implements the bubble sort algorithm to sort the dice in ascending order (small to large)
String toString(int[] dice) Returns a space-separated list of the dice in the array. Does not do any printing.
void reroll(int[] dice) Asks the user to indicate which dice to reroll by entering a 5-character string consisting only of the letters y and n (y meaning yes and n meaning no). The user may only use y and n, and must enter at least one y and exactly 5 characters. Repeatedly reprompt the user until she enters a valid response. Then, reroll only the specified dice.
int yahtzee(int[] dice) Returns the score for yahtzee (50 if all 5 dice are the same, and zero otherwise).
int fourOfAKind(int[] dice) Returns the score for four of a kind (the total of all five dice, if at least 4 of the dice have the same value, and zero otherwise). Note that if the dice contain a yahtzee, they also contain 4 of a kind.
int threeOfAKind(int[] dice) Returns the score for three of a kind (the total of all five dice, if at least 3 of the dice have the same value, and zero otherwise). Note that if the dice contain a yahtzee or 4 of a kind, they also contain 3 of a kind.
int largeStraight(int[] dice) Returns 40 if the dice contain a large straight, and zero otherwise.
int smallStraight(int[] dice) Returns 30 if the dice contain a small straight, and zero otherwise. Note that if the dice contain a large straight, they also contain a small straight.
int fullHouse(int[] dice) Returns 25 if the player has a full house (three dice contain three of a kind, and two of a kind), and zero otherwise. Note that a yahtzee also contains a full house. So, {3, 3, 3, 6, 6} would be considered a full house, as would {3, 3, 3, 3, 3}.
int sum(int[] dice, int key) Returns the sum of all the dice whose value match key. For example, if dice is the array containing {2, 3, 4, 4, 5}, then sum(dice, 4) would return 8, sum(dice, 3) would return 3, and sum(dice, 6) would return 0.
int chance(int[] dice) Returns the sum of all the dice.
void scoreChoices(int[] dice) Prints all the non-zero scoring options for the given dice. The choices should be listed in the order that they appear on a typical Yahtzee score sheet (see below), and should be formatted as shown in the sample run.
int maxScore(int[] dice) Returns the highest possible score that can be obtained with the given dice.

It is very important to write all methods, with the exact names, return types, parameters, and so on. Even if you do not know how to implement a method, write its stub because your code will be tested with a separate tester class. Failure to write methods according to requirements will result in at least a 50% deduction.

The score sheet below shows the order of the various roll types in a game of Yahtzee. This order is needed when displaying to the user her various scoring options.

https://s-media-cache-ak0.pinimg.com/originals/56/49/65/56496502da61a9b81d614dd6f6c6c998.png

It is very important to write all methods, with the exact names, return types, parameters, and so on. Even if you do not know how to implement a method, write its stub because your code will be tested with a separate tester class. Failure to write methods according to requirements will result in at least a 50% deduction.

The game play:

Each game will start with the display of the faces of the 5 dice, and all the non-zero scoring options for those dice. Then, the user is given the option for up to two rerolls. Once the user is done rolling, the maximum score for the dice is displayed.

Whenever the dice are displayed, they should be sorted first. Note that sorting the dice also makes many of the other methods easier to implement.

The array will be declared within the main method and must be passed to all supporting methods.

Submission requirement (2 point deduction for incorrect submission):

  • Create a folder named program12.
  • Inside that folder place exactly one file: java
  • Zip the program12 folder (not just the file in the folder, but the entire folder).
  • Name the zip file zip.

Sample run #1: Notice that as soon as the user quits, her score is given (this will be the maximum of all the possible scores) on the current dice. Notice what happens if the user does not respond with y or n:

Welcome to Yahtzee!Roll #1: 3 3 3 3 63 total: 126 total: 63 of a kind: 184 of a kind: 18chance: 18Roll again? yesRoll again? noRoll again? nYour score is 18. Goodbye.

Sample run #2: Notice that the user can have up to three rolls total (the initial roll and up to two rerolls). After the three rolls, the game automatically ends, reporting the score. Notice what happens when the user enters an incorrect list of letters for the reroll.

Welcome to Yahtzee!Roll #1: 1 1 2 3 41 total: 22 total: 23 total: 34 total: 4small straight: 30chance: 11Roll again? yIndicate which dice to roll using y and n: nnnnnIndicate which dice to roll using y and n: ynnnnyyIndicate which dice to roll using y and n: ynynQIndicate which dice to roll using y and n: nnyyyRoll #2: 1 1 1 5 51 total: 35 total: 103 of a kind: 13full house: 25chance: 13Roll again? yIndicate which dice to roll using y and n: nnnyyRoll #3: 1 1 1 1 11 total: 53 of a kind: 54 of a kind: 5full house: 25chance: 5yahtzee: 50Your score is 50. Goodbye.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] CSE174-program 12- YahtzeeGame
$25