+ 1
Why we use System.out.println in java?
why it is needed?
4 Respuestas
+ 12
System.out.println() method for output on display.
Class "System" has Fields "out" which has method println()
My English bad, see here
https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#out
+ 2
why system.out?
+ 2
System.out.println is a standard output function used in java. where System specifies the package name, out specifies the class name and println is a function in that class
+ 1
We use tit to print data in the new line.