我的问题是,如果我想获取用户输入的字符总数,我应该使用哪种方法?不使用数组,我尝试使用.length()但它没有返回所有字符,从第一个和最后一个名称,它只返回第一个名称。
这是我的代码示例。 (请不要笑我在编程中真的很新:))
System.out.print("Enter your first and last name: ");
String yourName = keyboard.next();
System.out.println("Your name has a total of " + yourName.length() + " numbers");
发生了什么事,如果我输入说“Neo Matrix”,它只会返回“Neo”,这是3。
我感谢任何帮助。谢谢!