Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following simple game of rolling a pair of fair dice, where each die has six faces, which contain one, two, three, four, five
Consider the following simple game of rolling a pair of fair dice, where each die has six faces, which contain one, two, three, four, five and six spots, respectively. After the dice have come to rest, the sum of the spots on the two upward faces is calculated. There are exactly two players. The first player keeps rolling the dice until she gets a sum of 7. We count the number of attempts it took her to get 7 After the first player is done, the second player rolls the same pair of dice until she gets a sum of 7 Again, we count the number of attempts it took her to get 7 The player who required less attempts to get 7 wins the game. For example: Player 1 rolls: 8, 11, 4, 9, 7 Player 2 rolls: 12, 5, 7 Player 2 wins, because it took her 3 attempts while player 1 needed 5 attempts Write a Java application that simulates this game. This application does not require any user input. The only output that your program produces is the final outcome. There are three possible outcomes: (1) "Player 1 is the winner!" (2) "Player 2 is the winner!" (3) "It is a tie!" In order to facilitate your task, a rolDice) method is given to you. It simulates rolling of a pair of dice and returns the sum of that pair (one pair at a time). This method uses Math.random0, which is a static method in the Math class. Math.random() returns a double value with a positive sign, greater than or equal to O.0 and less than 1.0
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