赞
踩
public class Test6 {
public static void main(String[] args) {
/* 给你一个字符串 s,由若干单词组成,单词前后用一些空格字符隔开。
返回字符串中最后一个单词的长度。
单词是指仅由字母组成、不包含任何空格字符的最大子字符串。
示例 1:输入:s = "Hello World“ 输出:5
解释:最后一个单词是“World”,长度为5。
示例 2:输入:s = " fly me to the moon" 输出:4
解释:最后一个单词是“moon”,长度为4。
示例 3:输入:s = "luffy is still joyboy" 输出:6
解释:最后一个单词是长度为6的“joyboy”。*/
//倒着遍历
//直到遇到空格为止
String str = "fly me to the moon";
int len = getTimes(str);
System.out.println(len);
}
//定义方法倒着遍历
public static int getTimes(String str) {
//定义变量用于记录遍历次数
int count = 0;
for (int i = str.length() - 1; i >= 0; i--) {
if (str.charAt(i) != ' ') {
count++;
} else {
break;
}
}
return count;
}
}
运行结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。