赞
踩
任务描述: 写一函数,求一个字符串的长度(字符串长度不超过255),然后在主函数中调用该函数 实现求长度操作。
任务要求:
代码示例:
- package April_2024;
-
- import java.util.Scanner;
-
- public class a240413 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- System.out.print("请输入一个字符串:");
- String input = scanner.nextLine();
- int length = getStringLength(input);
- System.out.println("字符串长度为:" + length);
- }
-
- public static int getStringLength(String str) {
- return str.length();
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。