ComeçarComece de graça

Java's entry point

The public static void main(String[] args) is where a Java program starts. It's your gateway to writing and running Java code!

Let's get started by making sure the program has a proper entry point.

Este exercício faz parte do curso

Introduction to Java

Ver curso

Instruções do exercício

  • Add the appropriate keyword instead of the ____.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

class SecondJavaApp {

	// Replace the ____ below with the necessary keyword
    public static void ____(String[] args) {
    
    	System.out.println("Java starts code execution in the main.");
    }
}
Editar e executar o código