Write a program average.java that just prints the strings


Averaging Numbers
As discussed in Section 7.4 of the text book, when you run a Java program called Foo, anything typed on the command line after "java Foo" is passed to the main method in the args parameter as an array of strings.
1. Write a program Average.java that just prints the strings that it is given at the command line, one per line. If nothing is given at the command line, print "No arguments".
2. Modify your program so that it assumes the arguments given at the command line are integers. If there are no arguments, print a message. If there is at least one argument, compute and print the average of the arguments. Note that you will need to use the parseInt method of the Integer class to extract integer values from the strings that are passed in. If any non-integer values are passed in, your program will produce an error, which is unavoidable at this point.
3. Test your program thoroughly using different numbers of command line arguments.

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Write a program average.java that just prints the strings
Reference No:- TGS0144624

Expected delivery within 24 Hours