×
×
Correct!
Insert the missing part of the code below to output "Hello World".
public class MyClass {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Not CorrectClick here to try again. Correct!public class MyClass { public static void main(String[] args) {. . ("Hello World"); } } |