题解 | #统计字符#

统计字符

https://www.nowcoder.com/practice/539054b4c33b4776bc350155f7abd8f5

package com.chen.test.huawei;

import java.util.Scanner;


public class HJ40StatisticStringNumber {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextLine()){

            statisticNumber(sc.nextLine());
        }
        sc.close();
    }

    private static void statisticNumber(String str){
        int wordCount = 0;
        int nullCount = 0;
        int numCount = 0;
        int otherCount = 0;
        for(Character c : str.toCharArray()){
            if((c>='a'&& c<='z') || c>='A'&& c<='Z'){
                wordCount++;
            }else if(c.equals(' ')){
                nullCount++;
            }else if(c >= '0' && c <= '9'){
                numCount++;
            }else {
                otherCount++;
            }
        }
        System.out.println(wordCount);
        System.out.println(nullCount);
        System.out.println(numCount);
        System.out.println(otherCount);

    }
}

全部评论

相关推荐

10-13 13:49
南京大学 财务
饿魔:笑死我了,你简直是个天才
点赞 评论 收藏
分享
10-15 20:01
已编辑
上海大学 Java
钉钉什么垃圾公司,约面鸽人
光年在眼前:不是坏事,感觉钉钉挺逆天的,二面结束还给我留作业,让我使用钉钉和看最新的发布会,然后说感受,我是应该不会去,三面直接拒绝不面了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务