Computer Science, asked by kundankumarw2002, 4 months ago

package start;

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


Error is-
Error: Could not find or load main class start.begin
Caused by: java.lang.ClassNotFoundException: start.begin


what should i do to overcome this error?

Answers

Answered by rpriya8580
0

Answer:

i dont understand but you can check on Google.

JUST TYPE THE ERROR NUMBER

FOR EG ERROR 5 in WINDOW

Answered by pratyushnishchal
0

The correct program is :

package start;

public class Begin {  

public static void main(String[] args) {

System.out.println("Hello World");

}

}

Thank you

Similar questions