Answered step by step
Verified Expert Solution
Question
1 Approved Answer
*Use Class Die for code . *create code to get the probability of coming up with a 9? count the number of times a sum
*Use Class Die for code . *create code to get the probability of coming up with a 9? count the number of times a sum of 9 appears- sum of tossing a pair of six-sided dice, 10,000 times? public class Die { private int face; public Die() { face = 6; } public int tossIt() { face =(int)(Math.random() * 6) + 1; return face; } public int getFace() { return face; } public static void main(String[] args) { Die die1 = new Die(); Die die2 = new Die(); int counter = 0; //number of dice natches for (int i = 0; i < 1000; i++) { if (die1.tossIt() == die2.tossIt()) { counter++; } } System.out.println(("The dice match" + counter + "times")); } }
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