// Echo.java // CS 101 class example // Echo command-line arguments using while loop public class Echo { public static void main(String[] args) { int i = 0; while (i < args.length) { System.out.println("arg " + i + " is " + args[i]); i++; } } }