华为机试题1

计算字符串最后一个单词的长度,单词以空格隔开。
【思路】
简单题,直接用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)