hey this sounds like a really simple question to me but I can't seem to figure out how to do it!
My code so far is
public class numbers {
public static void main(String[] args) {
final int N = (args.length);
for (int i = 0; i < N; i++)
StdOut.print(args[i]);
System.out.println();
System.out.print('\"');
for (int j = 0; j < N; j++)
StdOut.print(args[j]); System.out.print('\"');
System.out.println();
}
}
Say I type in nsh ajs lk
I want the output to be;
nshajslk
"nsh ajs lk"
Any help appreciated