xxxxxxxxxx
class Output {
public static void main(String[] args) {
System.out.println("1. println ");
System.out.println("2. println ");
System.out.print("1. print ");
System.out.print("2. print");
}
}
xxxxxxxxxx
//print and create new line after
System.out.println("text");
System.out.println(String);
//You can use any variable type, not just strings, although
//they are the most common
//Print without creating a new line
System.out.print("text");
System.out.print(String);
xxxxxxxxxx
System.out.println("Hello, World!");
/*type System the class, the .out the field, and the println short
for print line */
xxxxxxxxxx
System.out.println("whatever you want");
//you can type sysout and then ctrl + space
xxxxxxxxxx
public class Main
{
public static void main(String[] args) {
System.out.println("Java Print");
}
}
xxxxxxxxxx
//Syntax
System.out.println("Hello World!");
// Requests the system to output, print a new line of sting Hello World!
// Output: Hello World!
xxxxxxxxxx
//Without Variable
System.out.println("Hello World");
//With Variable
String hello = "Hello World";
System.out.println(hello);
xxxxxxxxxx
/* For this function, let me use the example I have used
just now. You should be able to see the difference right away:
*/
public class Main{
public static void main(String[] args) {
System.out.print("Hello World!");
System.out.print("Welcome to freeCodeCamp");
}
}
/* Here, you see that I used print instead of using println
like I did earlier. The print doesn't add the additional \n
(new line character) after executing the task in it.
This means that you will not get any new line after executing
any print statement like above.
*/
// The output will be like this:
// Hello World!Welcome to freeCodeCamp
/* If you want, then you can also solve this issue using \n
like below:
*/
public class Main{
public static void main(String[] args) {
System.out.print("Hello World!\n");
System.out.print("Welcome to freeCodeCamp");
}
}
/* This time, the \n will work as the new line character and
you will get the second string in a new line.
The output is like below:
*/
// Hello World!
// Welcome to freeCodeCamp
/* You can also print the two strings using only one print
statement like below:
*/
public class Main{
public static void main(String[] args) {
System.out.print("Hello World!\nWelcome to freeCodeCamp");
}
}
// The output will be the same this time:
// Hello World!
// Welcome to freeCodeCamp