/** * Title: ShowArgs * Description: Demonstration of getting command line arg values. * Tries to print each arg as an int, catches exceptions. * if an exception is caught, prints the stack trace. * @author hollingd@cs.rpi.edu */ public class ShowArgsST{ public static void main(String[] args) { // try to print each arg as an integer for (int i=0;i