Java基础练习--数组 统计字符串的个数

@Test
    //输入一行字符,分别统计其英文大小写字母,数字,其他字符
    public void test15(){
       // String str = "45zxcASD *&…^%234";//字符串
        Scanner scanner = new Scanner(System.in);
        System.out.println("请输入一行字符串:");
       // String str = scanner.next();//缺点是不能读入空格
        String str = scanner.nextLine();//可以读入空格了
        System.out.println(str);
        char[] chars = str.toCharArray();//把字符串转换成字符数组[4, 5, z, x, c, A, S, D,  , *, &, …, ^, %, 2, 3, 4]
        int countCapitalLetter = 0;
        int countSmallLetter = 0;
        int countNum = 0;
        int countOther = 0;
        for (int i = 0; i < chars.length; i++) {
            if(chars[i] >= 'A' && chars[i] <='Z'){
                countCapitalLetter++;
            }else if(chars[i] >= 'a' && chars[i] <= 'z'){
                countSmallLetter++;
            }else if(chars[i] >= '0' && chars[i] <= '9'){
                countNum++;
            }else{
                countOther++;
            }

        }
        System.out.println("大写字母个数:" +countCapitalLetter);
        System.out.println("小写字母个数:" +countSmallLetter);
        System.out.println("数字个数:" +countNum);
        System.out.println("其他字符个数:" +countOther);
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值