华为机试题1

作者: Airycode | 来源:发表于2018-05-10 13:34 被阅读13次

    计算字符串最后一个单词的长度,单词以空格隔开。
    【思路】
    简单题,直接用java api中的splite函数就直接可以搞定
    【代码实现】

    public class Main {
    
        
        public static int lengthOfLast(String str){
            String [] s = str.split(" ");
            return s[s.length-1].length();
        }
        
        public static void main(String[] args) {
            Scanner input = new Scanner(System.in);
            while (input.hasNext()) {
                String str = input.nextLine();
                System.out.println(lengthOfLast(str));
            }
        }
        
    }
    

    相关文章

      网友评论

        本文标题:华为机试题1

        本文链接:https://www.haomeiwen.com/subject/pipzrftx.html