I have been following a book but i can not get the user input thing to work could someone tell me what i am doing wrong? BTW i am using eclipse.
This is the code i am trying to use:
public class name {
public static void main(String[] args) {
System.out.println("enter your name");
Scanner console = new Scanner(); // error on this line
int name = console.readInt();
System.out.println("The name you entered is: " + name);
}
}
This is the error it is giving me:
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 name.main(name.java:7)


Reply With Quote


Bookmarks