
/**
 *
 * demonstration of the "for" statement
 *
 * Written by: Roger Garside
 *
 * First Written: 12/June/96
 * Last Rewritten: 2/Oct/96
 *
 */

public class Chapter5n1
    {

    /**
     *
     * main
     *
     */

    public static void main(String[] args)
        {
        System.out.println("Before the beginning of the loop") ;
        for (int i = 0 ; i < 10 ; i++)
	    System.out.println(i) ;
        System.out.println("After the end of the loop") ;
        } // end of mathod main

    } // end of class Chapter5n1

