java print ;lin code example

Example 1: java how to print

System.out.println("whatever you want");
//you can type sysout and then ctrl + space

Example 2: java print

System.out.print(<string>); //prints in the same line as the previous print
System.out.println(<string>); //prints in a new line

// Example
System.out.print("This ");
System.out.print("will ");
System.out.print("be ");
System.out.print("all ");
System.out.print("in ");
System.out.print("one ");
System.out.print("line.");

System.out.println("Hello World!");
System.out.println("second line");

Tags:

Java Example