Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Ihr Erstes Programm | Erste Schritte
Java-Grundlagen

book
Ihr Erstes Programm

Aufgabe

Swipe to start coding

Ersetzen Sie die Zeile //replace this line with your code durch den Code, der Hello World! auf dem Bildschirm anzeigt.

Lösung

java

solution

package com.example;

public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 6
package com.example;

public class Main {
public static void main(String[] args) {
// replace this line with your code
}
}

Fragen Sie AI

expand
ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

some-alt