Printing out
Printing text is one of the first steps in Java programming. It helps display messages, debug code, and interact with users.
Complete the program to print a welcome message!
Diese Übung ist Teil des Kurses
Introduction to Java
Anleitung zur Übung
- Replace
____
with the correct Java keyword for printing -println
.
Tip: you can view the Slides in the output window. On mobile, click on the three horizontal lines.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
class WelcomeToJava {
public static void main(String[] args) {
// Replace the ____ below with the necessary keyword
System.out.____("Welcome to Java!");
}
}