I am run my java code in IntelliJ it is showing this error:
Error: Could not find or load main class CWA_01_INTRO Caused by: java.lang.ClassNotFoundException: CWA_01_INTRO
whereas the same code is running in vs code, I am looking for your affirmative help.
I have asked some chatgpt , pieces copilot but not getting a summarize solution, rather than list of causes.
Here is my code
import java.util.*;
public class CWA_01_INTRO {
public static void main(String[] args) {
Scanner as = new Scanner(System.in);
System.out.println("Hello World ");
as.close();
}
}