标签:keyword 整数 tle 长度 nbsp util scan ast port
计算字符串最后一个单词的长度,单词以空格隔开。
一行字符串,非空,长度小于5000。
整数N,最后一个单词的长度。
hello world
5
import
java.util.*;
public
class
Main{
public
static
void
main(String[] args){
Scanner input=
new
Scanner(System.in);
String s=
""
;
while
(input.hasNextLine()){
s=input.nextLine();
System.out.println(s.length()-
1
-s.lastIndexOf(
" "
));
}
}
}
标签:keyword 整数 tle 长度 nbsp util scan ast port
原文地址:http://www.cnblogs.com/code666/p/6549653.html