• Java50道经典习题-程序38 求字符串长度


    题目:写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。

     1 import java.util.Scanner;
     2 public class Prog38 {
     3     public static void main(String[] args) {
     4         System.out.println("请输入一个字符串:");
     5         Scanner scan=new Scanner(System.in);
     6         String s=scan.nextLine();
     7         scan.close();
     8         System.out.println("你输入的字符串为:"+s);
     9         System.out.println("输入的字符串的长度为:"+slong(s));
    10     }
    11     //求字符串长度的函数
    12     public static int slong(String s) {
    13         char[] ch=s.toCharArray();
    14         return ch.length;
    15     }
    16 }
    17 /*运行结果
    18 请输入一个字符串:
    19 123abcd
    20 你输入的字符串为:123abcd
    21 输入的字符串的长度为:7
    22 */
  • 相关阅读:
    POJ2524+并查集
    POJ3697+BFS+hash存边
    POJ1151+线段树+扫描线
    POJ2528+线段树
    ubuntu 和 win7 远程登陆 + vnc登陆
    POJ3690+位运算
    POJ3283+字典树
    POJ3282+模拟
    POJ2349+prim
    2016.6.13
  • 原文地址:https://www.cnblogs.com/parkour1026/p/10796562.html
Copyright © 2020-2023  润新知