Exception in running a program
Hello Friend
I have written the following hello world program it compile perfectly but when i try to run the same it give the exception
Exception in thread "main" java.lang.NoClassDefFoundError: HELLO
The Program is
import java.io.*;
class HELLO
{
public static void main()
{
System.out.println("Hello World");
}
}
i Compiled as javac HELLO.java
and run as java HELLO
|