我的问题是如果我想获取用户输入的字符总数应该使用什么方法?在不使用数组的情况下,我尝试使用 .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”,它只会返回 3。
我很感激任何帮助。谢谢你!