public class Strings {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String word1 = sc.next();
System.out.println(word1.length());
sc.close();
}
}
所以我想制作一个非常简单的程序,它接受用户字符串并返回长度,但程序甚至不运行。我正在使用日食。有小费吗?