Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Score: Sorry, you did not answer the question correctly. Answer(s): (Your response(s) are shown below.) The Game50 dice game is described in the textbook. Here
Score: Sorry, you did not answer the question correctly. Answer(s): (Your response(s) are shown below.) The Game50 dice game is described in the textbook. Here is the partially written Game50 class. public class Game501 static final int SIZE 50; // target score to be exceeded private int bound; / number of allowable rolls to reach 50 private int rollcount; I/ number of rolls private int total; // accumulated dice roll sum private boolean winner; // game a win or loss? public Game50 (int rollBound) bound rollBound; // rollBound value supplied in constructor call in driver class public void playGame() initializeGame) while(!gameOverO) advancePlay); showGame(); judgeAndReport); In the answer box below, enter code that implements the code for the Game50 for the private method rol1. private int roll() 2 4 6 8 Random rand = new Random(); return rand. nextInt(6) + 1 RESUBMIT ANSWER Feedback: The probability distribution produced by the dice rolls in your game is not close enough to the expected distribution Your code produced: 2 0.0% 30.0% 4100.0% 50.0% 6 0.0% 70.0% 80.0% 9 0.0% 10 00% 11 0.0% 12 0.0% The expected distribution was
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started