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 boolean
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
Get step-by-step solutions from verified subject matter experts
