/**
* @author gyf
* @ClassName Test
* @Date 2024/8/3 17:22
* @Version V1.0
* @Description :
*/
public class Test {
public static void main(String[] args) {
String s1 = "Hello World ";
System.out.println(getLength(s1));
String s2 = "fly me to the moon";
System.out.println(getLength(s2));
String s3 = "luccy is still joybys";
System.out.println(getLength(s3));
}
public static int getLength(String str) {
int length = 0;
for (int i = str.length() - 1; i >= 0; i--) {
if (str.charAt(i) != ' ') {
length++;
} else {
break;
}
}
return length;
}
}
最大字符串长度
XF鸭2024-08-09 2:01
相关推荐
Daniel 大东28 分钟前
BugJson因为json格式问题OOM怎么办Ajiang28247353041 小时前
对于C++中stack和queue的认识以及priority_queue的模拟实现幽兰的天空2 小时前
Python 中的模式匹配:深入了解 match 语句Theodore_10225 小时前
4 设计模式原则之接口隔离原则冰帝海岸6 小时前
01-spring security认证笔记世间万物皆对象6 小时前
Spring Boot核心概念:日志管理没书读了6 小时前
ssm框架-spring-spring声明式事务----云烟----7 小时前
QT中QString类的各种使用lsx2024067 小时前
SQL SELECT 语句:基础与进阶应用小二·7 小时前
java基础面试题笔记(基础篇)