Question: *Use Class Die for code . *create code to get the probability of coming up with a 9? public class Die { private int face;
*Use Class Die for code . *create code to get the probability of coming up with a 9? 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
