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!
Este ejercicio forma parte del curso
Introduction to Java
Instrucciones del ejercicio
- 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.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
class WelcomeToJava {
public static void main(String[] args) {
// Replace the ____ below with the necessary keyword
System.out.____("Welcome to Java!");
}
}