0
How to print a space in java?
5 Respostas
+ 4
" " Contains a space.
System.out.print(" ");
+ 4
You need to add a space between the quotes.
" " not ""
+ 1
System.out.println(" "); or
System.out.println("\t");
0
So.. System.out.println("hi" + "" + "guys") prints hi guys?
- 1
Alrighty @faith