how to control where you print in java code example
Example 1: 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 2: how to print something in java
System.out.print("one");
System.out.print("two");
System.out.println("three");
// RESULT = 'onetwothree'