Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Tu Primer Programa | Iniciando
Principios Básicos de Java

book
Tu Primer Programa

Tarea

Swipe to start coding

Replace the line "//replace this line with your code" with the code that will display "Hello World!" on the screen.

Once you've completed this task, click the button below the code to check your solution.

Solución

java

solution

package com.example;

public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 6
package com.example;

public class Main {
public static void main(String[] args) {
// replace this line with your code
}
}
toggle bottom row
some-alt