Question: In java please 1. add an instance method that determines if both dice are even. 2.add an instance method that determines if both dice are

In java please

1. add an instance method that determines if both dice are even.

2.add an instance method that determines if both dice are odd.

// hint booleanIn java please 1. add an instance method that determines if both

k You must not change the declaration of any method. import stdlib.StdOut; import stdlib.StdRandom; public class PairOfDice t private int diel, die2; public PairOfDice() roll); public void roll) die1 = StdRandom.uniform (1, 7); die2 = StdRandom.uniform (1, 7); public boolean isDoubles) return die1 == die2; public int sum() return diel + die2 ToDo 1 // add an instance method that determines if both dice are even //hint boolean ToDo 2 // add an instance method that determines if both dice are odd //hint boolean

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!