Hello, Java platform

Report a typo

Comment out certain lines of code to make the program output "Hello, Java platform".

Write a program in Java 17
public class Main {

public static void main(String[] args) {

System.out.print("Hello, ");
System.out.print("world");
System.out.print(" and ");
System.out.print("Java");
System.out.print(" platform");
}
}
___

Create a free account to access the full topic