题目描述
计算字符串最后一个单词的长度,单词以空格隔开。
输入描述
一行字符串
输出描述
整数N,最后一个单词的长度。
输入例子
hello world
输出例子
5
算法实现
import java.util.Scanner;
/**
* Author: 王俊超
* Date: 2015-12-18 10:40
* Declaration: All Rigths Reserved !!!
*/
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
String input = scanner.nextLine();
System.out.println(findLastWordLength(input));
}
scanner.close();
}
public static int findLastWordLength(String input) {
int last = input.length() - 1;
while (last >= 0 && input.charAt(last) == ' '){
last--;
}
int pos = last - 1;
while (pos >= 0 && input.charAt(pos) != ' '){
pos--;
}
return last - pos;
}
}