hi,
im anew member >> can u help me please
i have 2 errors with this code
The errors in the 5th line
Code:public class wordlength {
public wordlength() {
}
public static void main(String[] args) {
// the errors are in the next line
Scanner stdin = Scanner.create (System.in);
System.out.print("Enter Word");
String word = stdin.nextline();
int wordlength = word.length();
System.out.println("word"+word+"has length"+wordlength+".");
}}

