Your first Java code
It's time to run your first Java code!
Note: You do not need to change the code in this exercise.
Diese Übung ist Teil des Kurses
Introduction to Java
Anleitung zur Übung
- Press the Run Code button to execute the Java code and see the results in the Output area.
- Press the Submit Answer (or Submit) button to proceed to the next exercise.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
// You learned about class in the previous video
class WelcomeToJava {
// You'll learn about the main method next
public static void main(String[] args) {
// You'll learn about println statements too!
System.out.println("Welcome to Introduction to Java!");
}
}