// set up infinite loops and loops that do not execute // identify line #'s for these these lines: priming; test; and update public class bad_loop { public static void main( String[] args ) { int counter = 1; while (counter <= 10) { System.out.println("This statement is repeated. The value of counter is " + counter); counter=counter-100000; } System.exit( 0 ); } // end main } // end of program