i can compile the java file successfully. but after i run it the error message:
Exception in thread "main" java.lang.NoClassDefFoundError: Welcome2
come out.
this is my sources code
someone can please help me
public class Welcome2
{
public static void main(String args[])
{
System.out.print( "welcome to");
System.out.println("Java Programming!");
}
}