I need to select the Main class that contains the main method for the IDE to know where to start. need to select the Main class that contains the main method for the IDE to know where to start.

Answered

0
4 comments

Show your Main.java file contents.

0
Avatar
Permanently deleted user

sorry,  but how ?

0
Avatar
Permanently deleted user

0

This is not a valid Java class.

The valid Java class would look like this:

public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
0

Please sign in to leave a comment.