题解 | #字符串最后一个单词的长度#

字符串最后一个单词的长度

https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da

public class HJ1 {
    public static void main(String[] args) {
        boolean flag = true;
        while (flag) {
            Scanner scanner = new Scanner(System.in);
            String next = scanner.nextLine();
            if (Objects.equals(next, "-1")) {
                flag = false;
            } else {
                System.out.println(computeStrLengthLastWord(next));
            }
        }
    }

    public static Integer computeStrLengthLastWord(String word) {
        if (!word.contains(" ")) {
            return word.length();
        }
        String[] splitString = word.split(" ");
        int index = splitString.length;
        return splitString[index - 1].length();
    }
}

全部评论

相关推荐

预计下个星期就能开奖吧,哪位老哥来给个准信
华孝子爱信等:对接人上周说的是这周
点赞 评论 收藏
分享
菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务