Question: *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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!