FileDocCategorySizeDatePackage
Echo.javaAPI DocExample1074Sat Jan 24 10:44:22 GMT 2004je3.basics

Echo

public class Echo extends Object
This program prints out all its command-line arguments.

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

        int i = 0;                           // Initialize the loop variable
        while(i < args.length) {             // Loop until the end of array
            System.out.print(args[i] + " "); // Print each argument out
            i++;                             // Increment the loop variable
        }
        System.out.println();                // Terminate the line