System.out.println(s+" "); why this" " | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

System.out.println(s+" "); why this" "

24th Jan 2017, 6:29 AM
Great Srrr
Great Srrr - avatar
2 Respuestas
+ 3
this " " just mean that it will output a whitespace.
24th Jan 2017, 7:04 AM
malicious
+ 1
little example String a= "a"; String b= "b"; System.out.prinln (a+" "+b); The output is: a b hope it helps
24th Jan 2017, 7:07 AM
malicious