Answers for "how to make word print only once java using print statement"

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);
Posted by: Guest on April-17-2020

Code answers related to "how to make word print only once java using print statement"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language