how to print new line in jave code example

Example 1: java how to go into newline while using print

// newline while using System.out.print();
System.out.print("First Line\nSecond Line");
//output:
//First Line
//Second Line

Example 2: java how to print without going into newline

System.out.print("Hello World!");
System.out.print("Bonjour Le Monde!");
// output: "Hello World!Bonjour Le Monde!" (all in one line)
// the lines that are greyed out are comments and act as notes

Tags:

Misc Example