//Verify the implementation of the Die class //Create a pair of 6-sided dice //Toss the dice untill a "pair of sixes" is obtained public class DieClient { public static void main(String[] args) { Die one = new Die(6); Die two = new Die(6); boolean pairOfSixes = false; do { one.toss(); two.toss(); System.out.println(one.getUpFace() + " : " + two.getUpFace()); if (one.getUpFace() == 6 && two.getUpFace() == 6) pairOfSixes = true; } while (!pairOfSixes); } }