|
Create a program that will print every other argument given on the command line. If the program was executed with the following on the command line,
java ArgumentSkipper one two three a b c d
the program would print
one
three
b
d
Consider how your program would operate when no arguments are given. |