Sample Code:
package pack.java;
import java.util.*;
public class Bye {
public static void main(String args[]) {
int a=3,b=5;
System.out.println("The sum is:"+(a+b));
}
}
I am unable to execute any code in the eclipse ide. I am getting an error. Error: Could not find or load main class pack.java.Bye Caused by: java.lang.ClassNotFoundException: pack.java.Bye