写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。
public class Example39 {
public static void main(String[] args) {
length("Hello World!");
}
public static void length(String s) {
int n = s.length();
System.out.println("输入的字符串为:" + s + ",其长度为:" + n);
}
}
时间: 2024-11-06 12:54:26