计算字符数 * 你的名字是什么?:詹姆斯 你的中间名是什么:耐寒 你的姓是什么?:威廉
使用scanner如何计算字符数。
答案 0 :(得分:3)
Scanner sc = new Scabber(System.in);
sc.nextLine().length()
会为你做的。
PS:如果单词中存在单词并用空格分隔,您也可以使用next()
。
答案 1 :(得分:2)
试试这个
Scanner scanner = new Scanner(System.in);
System.out.println(scanner.nextLine().length());
答案 2 :(得分:0)
如果没有明确要求您需要使用scanner对象计算长度,则使用length()
将返回任何字符串中的字符数。
**使用scanner.nextLine().length()
实际上是在第一次方法调用时返回一个字符串,然后在第二次方法调用时返回长度。