Question: Given the Die class: public class Die{ int face; public Die(){} public void setFace(int f){ face=f; } public int getFace(){ return face; } } Implement
Given the Die class:
public class Die{
int face;
public Die(){}
public void setFace(int f){
face=f;
}
public int getFace(){
return face;
}
}
Implement a method named dicey that will create an array of 50 die objects. the method will generate a random number between 1 and 6 (inclusive) for the face value of each of the objects in the array and will return the total number number of dice with face value 5.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
