C:\>java myProgram "Input String" A good answer might be:
When |
String Reverser
This program reverses the characters of its argument.
It does this by copying characters one at a time from right to left
from the input string to the end of a reversed string.
The method
Here is a sample run of this program: C:\cs151\Notes\chap49D>java ReverseTester "This is argument 0" 0 tnemugra si sihT
The string that follows the program name on the command line
is available to the program in slot zero of the array
of arguments, |
QUESTION 3:
How many objects does |