//******************************************************************** // Counter3.java Author: Lewis/Loftus // // Demonstrates the use of a for loop. //******************************************************************** public class Counter3 { //----------------------------------------------------------------- // 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"); } }