how to do print statement in java code example
Example 1: how to print something in java
System.out.print("one");
System.out.print("two");
System.out.println("three");
// RESULT = 'onetwothree'
Example 2: java print statement
System.out.println("print your String");