class J05E07 { public static void main(String[] args) { int j; System.out.println("Open the fridge ..."); for(j = 0; j < 3; j++) { System.out.println("Chomp!"); } System.out.println("... close the fridge"); System.out.println("When done the loop counter is " + j); } }