java printing ' ' in a text code example
Example 1: how do i print text in java
System.out.println("your text" );
/* this will print your message and then move your cursor to the next line */
/* or */
System.out.print("your text");
/* this will print your message and keep it on the same line */
/* to print multiple items in one statement us a + between them */
System.out.println("age: " + age);
Example 2: print string in java
String data = "Some string";
System.out.println(data);