Java problem implement this specification.  In addition, while Scanner input and System.out output will take place only in the main method, all solitaire game simulation and computation of the first player win probability estimate should take place in a method getAdvantage that takes an integer parameter for the number of games to simulate, and returns a double-precision floating-point first player win probability.  The main method will read the desired number of simulations, call method getAdvantage with that number, and report the returned number in the specified format.   Specification: First-Player Advantage Pig is a folk jeopardy dice game with simple rules: Two players race to reach 100 points. Each turn, a player repeatedly rolls a die until either a 1 ("pig") is rolled or the player holds and scores the sum of the rolls (i.e. the turn total). At any time during a player's turn, the player is faced with two decisions: roll - If the player rolls a 1: the player scores nothing and it becomes the opponent's turn. 2 - 6: the number is added to the player's turn total and the player's turn continues. hold - The turn total is added to the player's score and it becomes the opponent's turn. Problem:  There is an advantage to going first in Pig, but how big an advantage is it for “hold at 20 or goal” play?  We wish to estimate the probability of a first-player win with a hold-at-20-or-goal play policy.  Simulate a given number of two-player Pig games where a player rolls until a 1 ("pig") is rolled, or the turn total is greater than or equal to 20, or the score plus the turn total is greater than or equal to 100.  Report the fraction of games won by the first player. Input Format:  Enter a single positive integer indicating the number of games simulated.  (Larger numbers will tend to yield better estimations.) Output Format: Initially, prompt the user with "Games? ". After the simulations, print "Probability of first player win: " followed by the fraction of simulated games won by the first player

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Java problem

implement this specification.  In addition, while Scanner input and System.out output will take place only in the main method, all solitaire game simulation and computation of the first player win probability estimate should take place in a method getAdvantage that takes an integer parameter for the number of games to simulate, and returns a double-precision floating-point first player win probability.  The main method will read the desired number of simulations, call method getAdvantage with that number, and report the returned number in the specified format.

 

Specification:

First-Player Advantage

Pig is a folk jeopardy dice game with simple rules: Two players race to reach 100 points. Each turn, a player repeatedly rolls a die until either a 1 ("pig") is rolled or the player holds and scores the sum of the rolls (i.e. the turn total). At any time during a player's turn, the player is faced with two decisions:

  • roll - If the player rolls a
    • 1: the player scores nothing and it becomes the opponent's turn.
    • 2 - 6: the number is added to the player's turn total and the player's turn continues.
  • hold - The turn total is added to the player's score and it becomes the opponent's turn.

Problem:  There is an advantage to going first in Pig, but how big an advantage is it for “hold at 20 or goal” play?  We wish to estimate the probability of a first-player win with a hold-at-20-or-goal play policy.  Simulate a given number of two-player Pig games where a player rolls until a 1 ("pig") is rolled, or the turn total is greater than or equal to 20, or the score plus the turn total is greater than or equal to 100.  Report the fraction of games won by the first player.

Input Format:  Enter a single positive integer indicating the number of games simulated.  (Larger numbers will tend to yield better estimations.)

Output Format:

  • Initially, prompt the user with "Games? ".
  • After the simulations, print "Probability of first player win: " followed by the fraction of simulated games won by the first player

Sample Transcript:

Games? 1000000 Probability of first player win: 0.534951

 

Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Adjacency Matrix
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education