/**
* @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
相关推荐
XiaoLeisj2 小时前
【JavaEE初阶 — 多线程】单例模式 & 指令重排序问题paopaokaka_luck2 小时前
【360】基于springboot的志愿服务管理系统dayouziei2 小时前
java的类加载机制的学习励志成为嵌入式工程师3 小时前
c语言简单编程练习9捕鲸叉3 小时前
创建线程时传递参数给线程A charmer3 小时前
【C++】vector 类深度解析:探索动态数组的奥秘Peter_chq3 小时前
【操作系统】基于环形队列的生产消费模型Yaml44 小时前
Spring Boot 与 Vue 共筑二手书籍交易卓越平台小小小妮子~4 小时前
Spring Boot详解:从入门到精通hong1616884 小时前
Spring Boot中实现多数据源连接和切换的方案