+ 1
Didn't understand system.print.out????
Help plzzz
4 Antworten
+ 6
$YeD $aMeE₹
System.out.println(
"Welcome to SoloLearn!");
System.out.println is a Java statement that prints the argument passed, into the System.out which is generally stdout.
System - is a final class in java.lang package.
out - is a static member field of System class and is of type PrintStream.
println - is a method of PrintStream class.
'println' prints the argument passed to the standard console and a newline. There are multiple 'println' methods with different arguments (overloading). Every 'println' makes a call to 'print' method and adds a newline. 'print' calls write() and the story goes on like that.
+ 9
Hello, 😊
Can you specifying your question correctly!
Use the search bar!
https://www.sololearn.com/post/10362/?ref=app
Please, read our guidelines:
https://www.sololearn.com/discuss/1316935/?ref=app
An useful code for any new user here!;)
https://code.sololearn.com/WvG0MJq2dQ6y/
+ 1
Yaa sure