Omi Di
0
Q:

print statement 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);
13
System.out.println("Hello, World!");
/*type System the class, the .out the field, and the println short 
for print line */
11
System.out.println("Your text here.");
3
System.out.println("Hello World!");
1
System.out.println("Hello!"); //prints then ends line
System.out.print("Hello!!");//prints without line spacing
1
System.out.println("print your String");
1
System.out.println(String someString); /** Can take in other types as well such as integers (ints) */
1

New to Communities?

Join the community