/** * How many rolls of a die does it take to roll a 6? */ public class Roll6 { public static void main(String[] args) { int rollCount = 0; int sides = 6; int roll = 0; System.out.println("Number of rolls before getting a 6: " + rollCount); } }