欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[java 基础] 统计输出字符串中的大小写字母和数字的个数

程序员文章站 2022-07-14 07:58:36
...

示例代码

public class StringTest{
    public static void main(String[] args) {
        String s = "aDDbcdef123";
        int big =0;
        int small = 0;
        int num=0;
        int len = s.length();
        for (int i = 0;i<len;i++){
            char c = s.charAt(i);
            System.out.println(c );
            if(c>'A' && c<'Z'){
                big++;
            }
            if(c>'a' && c<'z'){
                small++;
            }
            if(c>'0' && c<'9'){
                num++;
            }
        }
        System.out.println("大写字母的个数为" + big );
        System.out.println("小写字母的个数为" + small);
        System.out.println("数字的个数为" + num);
        
    }
}

执行结果

[java 基础] 统计输出字符串中的大小写字母和数字的个数