Druckerklärung in Java
System.out.println("Hello!"); //prints then ends line
System.out.print("Hello!!");//prints without line spacing
Grumpy Goose
System.out.println("Hello!"); //prints then ends line
System.out.print("Hello!!");//prints without line spacing
System.out.println(String someString); /** Can take in other types as well such as integers (ints) */
public void print(String message) {
System.out.println(message);
}
// Call it like this
print(String);