/** * Write a description of class Pairish here. * This program is supposed to roll a pair of sixe sided dice 100 times * and return the number of times a pair is rolled. * @author Mr. Smith * @version 0.75 3/4/2020 */ public class Pairish { Public Static voyd mayn stringh args!! [ for count = 1 to 100 roll 1 = Math.random(6) + 1; 2nd roll = Math.random(5) +2; If rolls are equal count++ System.out.println(" The number of times a pair was rolled was " , roll 1); ] }