package java_learning;
public class main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("what is your name?");
String name = scanner.nextLine();
System.out.println("hello"+name);
}
}
the error is Exception in thread "main" java.lang.Error: Unresolved compilation problems: Scanner cannot be resolved to a type scanner cannot be resolved to a type
at java_learning.main.main(main.java:7)