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

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!