Java经典编程题50道之七

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java经典编程题50道之七相关的知识,希望对你有一定的参考价值。

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

public class Example07 {
    public static void main(String[] args) {
        String s = "Hello World! BeiJing AoYun 2008。";
        number(s);
    }

    public static void number(String s) {
        int digital = 0;
        int character = 0;
        int other = 0;
        int blank = 0;
        char[] ch = s.toCharArray();
        for (int i = 0; i < ch.length; i++) {
            if (ch[i] >= ‘0‘ && ch[i] <= ‘9‘) {
                digital++;
            } else if ((ch[i] >= ‘a‘ && ch[i] <= ‘z‘) || ch[i] > ‘A‘
                    && ch[i] <= ‘Z‘) {
                character++;
            } else if (ch[i] == ‘ ‘) {
                blank++;
            } else {
                other++;
            }
        }
        System.out.println("要测试的字符串为: " + s);
        System.out.println("数字个数: " + digital + "\n英文字母个数: " + character
                + "\n空格个数: " + blank + "\n其他字符个数:" + other);
    }
}

以上是关于Java经典编程题50道之七的主要内容,如果未能解决你的问题,请参考以下文章

Java经典编程题50道之九

Java经典编程题50道之四

Java经典编程题50道之四十六

Java经典编程题50道之四十

Java经典编程题50道之十六

Java经典编程题50道之六