Below is the code.
public static void main(String[] args) {
for(String e : args) {
System.out.println(e);
}
}
when I input one
, the output is one
I understand this.
But, When input one two
the output is not one two
but one
and two
.
Isn't the space a character? if not, is the space separate each inputs in a String array?