print statement java code example

Example 1: print in java

//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);

Example 2: how to print in java

System.out.println("Hello, World!");
/*type System the class, the .out the field, and the println short 
for print line */

Example 3: how to print in java

System.out.println("Your text here.");

Example 4: print a string java

public class hello {

    public static void main(String[] args) {
	String hello = "Hello";
      System.out.println(hello);

    }
}

or 

public class hello {

    public static void main(String[] args) {
	
	System.out.println("Hello");
    }
}

Example 5: java print statement

System.out.println("print your String");

Example 6: how to print something on java

//All the other answers are all correct I just wanted to add that 
//in most cases you can write "sout" nad then press enter to write
//out the big command