Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please do it following the given in java please will like 13.23 LAB*: Program: Lucky 7 Program Specifications Write a program to play an automated

please do it following the given in java please will like
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
13.23 LAB*: Program: Lucky 7 Program Specifications Write a program to play an automated dice game that uses two dice (GVDie class provided). The player rolls both dice and either wins one credit, loses one credit, or sets a goal for future rolls. Current round ends when player wins or loses a credit. Game ends when credits are zero. Note: this program is designed for incremental development. Complete each step and submit for grading before starting the next step. Only a portion of tests pass after each step but confirm progress. Step 0. Read starter template and do not change the provided code. Two GVDie objects are created. A random seed is read from input and passed to a die. This supports automated testing and creates predictable results that would otherwise be random. Starting credits is read from input. Step 1 (3 pts). Roll both dice. Player wins one credit by rolling 7 or 11. Player losses one credit by rolling 2,3, or 12 Otherwise, credits do not change and the player's goal is set to the dice total. The player's goal must be repeated in Step #2 to win a credit GVDie class includes roll0 and getValue() methods. Output dice total and credits. Submit for grading to confirm 3 tests pass. Ex. If input is: Step 2 (4 pts). If player did not win or lose in step 1 (i.e. a goal was set), continue rolling both dice until one of two outcomes: 1) player roll a 7 and loses one credit or 2) player rolls the goal value and wins one credit. Current round ends. Set goal to-1 and output credits. Submit for grading to confirm 5 tests pass Ex If input is: 24. 7 Sample output is: Dice total: 8 Dice total: 12 Dice total: 7 Credits: 6 Step 3 ( 3 pts). Add a loop to repeat steps 1 and 2 until credits are zero. Count and output the number of rounds when game is over Submit for grading to confirm all tests pass: Ex If input is: 434 Sample output ends with: Credits: 2: Dlce total: 8 Dice total: 7 Credita1 1 Dice total: 5 Dlce total: 6 Dice total: 6 Dice total: 4 Dlee total: 7 Creditat 0 Hounds: 162 Current file: LabProgram.java - Load default template. II Read starting credits credits = scnr. nextInt(); /* Insert your code here */ \} Hile is marked as read only Current file: GVDie.java File is marked as read only Current file: GVDie.java *

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions