首页
IT
登录
6mi
u
盘
搜
搜 索
IT
——字符串最后一个单词的长度
——字符串最后一个单词的长度
xiaoxiao
2024-12-28
12
题目描述
计算字符串最后一个单词的长度,单词以空格隔开。
输入描述:
一行字符串,非空,长度小于5000。
输出描述:
整数N,最后一个单词的长度。
输入例子:
hello world
输出例子:
5
验证通过代码:
[java] view plain copy
import
java.util.Scanner;
//网站上输入的时候记得引包
public
class
Main{
static
int
getLastWord(String str)
{
int
lastIndex=str.lastIndexOf(
' '
);
String LastWord = str.substring(lastIndex+
1
,str.length());
return
LastWord.length();
}
public
static
void
main(String[] args)
{
Scanner s=
new
Scanner(System.in);
String str=s.nextLine();
System.out.println(getLastWord(str));
}
}
转载请注明原文地址: https://ju.6miu.com/read-1295093.html
最新回复
(
0
)