//******************************************************************** // Counter2.java Author: Lewis/Loftus/Cocking // // Demonstrates the use of a for loop. //******************************************************************** public class Counter2 { //----------------------------------------------------------------- // Prints integer values from 1 to a specific limit. //----------------------------------------------------------------- public static void main (String[] args) { final int LIMIT = 5; for (int count=1; count <= LIMIT; count++) System.out.println (count); System.out.println ("Done"); } }