题解 | #统计字符#

统计字符

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);

    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 16:15
我应届生,去年10月份开始在这家公司实习,到今年10月份正好一年想(实习+试用期),在想要不要提前9月份就离职,这样好找工作些,但又差一个月满一年,又怕10月份国庆回来离职,容易错过了下半年的金九银十,到年底容易gap到年后
小破站_程序员YT:说这家公司不好吧,你干了快一年 说这家公司好吧,你刚毕业就想跑路说你不懂行情吧,你怕错过金九银十说 你懂行情吧,校招阶段在实习,毕业社招想换工作 哥们,我该怎么劝你留下来呢
应届生,你找到工作了吗
点赞 评论 收藏
分享
06-25 09:33
厦门大学 Java
程序员饺子:现在日常估计没啥hc了,等到八月多估计就慢慢有了。双九✌🏻不用焦虑的
投递快手等公司7个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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