题解 | #统计字符#

统计字符

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

import java.util.*;
public class Main{
    public static void main(String[] args) {
         Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()){
            String nextLine = scanner.nextLine();
            char[] toCharArray = nextLine.toCharArray();
            int count01 = 0;
            int count02 = 0;
            int count03 = 0;
            int count04= 0;
            for (char c :toCharArray) {
                if(c >= 'a' && c <= 'z'){
                    count01++;
                }else if(c >= 'A' && c <= 'Z'){
                    count01++;
                }else if(c >= '0' && c <= '9'){
                    count02++;
                }else if(c == ' '){
                    count03++;
                }
            }
            System.out.println(count01);
            System.out.println(count03);
            System.out.println(count02);          
            count04= nextLine.length()-count01-count02-count03;
            System.out.println(count04);
        }
    }
}




全部评论

相关推荐

头像
今天 10:53
已编辑
东北大学 自动化类
点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务