Описание тега println
In programming, `println` generally prints out the arguments given, then moves to a new line for subsequent output.
In programming, println
generally outputs the arguments supplied, then moves to a new line for any further output operations. For example, in Java
you could write the following:
System.out.print("Hello ");
System.out.println("World");
System.out.println("Goodbye");
And the console would output (with \n
representing newline characters):
Hello World\n
Goodbye\n
There are several languages that use the println()
method; Others have different syntax that accomplishes the same functionality.