/** CommandLineDemo.java --- main program in Java
 * @author Uwe Assmann
 * @version 1.0
 * @date 2015-04-08
 */

// for import of System.out.println()
import java.util.*;

/**
   Simple main program of CommandLineDemo, is called by the run-time system (operating system). 
   Main operation "main" is a class operation, i.e., exists only once.
   Just print all arguments given in args[]
   Works only for exact 5 arguments
 */
public class CommandLineDemo {
    public static void main(String args[]) { 
	int i = 0;
	System.out.println("  "+args[0]);
	System.out.println("  "+args[1]);
	System.out.println("  "+args[2]);
	System.out.println("  "+args[3]);
	System.out.println("  "+args[4]);
	System.out.println("  "+args[5]);
	System.out.println(".");
    }
}


