// Test.java // Bob Myers // class Test { public static void main(String[] args) { for (int counter = 0; counter < 10; counter++) { // loop body } System.out.println(counter); // illegal. counter out of scope } }