字符串最后一个单词的长度
Posted code666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串最后一个单词的长度相关的知识,希望对你有一定的参考价值。
题目描述
计算字符串最后一个单词的长度,单词以空格隔开。
输入描述:
一行字符串,非空,长度小于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(
" "
));
}
}
}
以上是关于字符串最后一个单词的长度的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 58 最后一个单词的长度[字符串] HERODING的LeetCode之路