统计字符

统计字符

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

四种情况,没什么难点。

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) {
            String str = in.nextLine();
            int letter = 0;
            int space = 0;
            int num = 0;
            int other = 0;
            for(int i = 0; i < str.length(); i++){
                char c = str.charAt(i);
                if((c >= 'a' && c <= 'z')||(c >= 'A' && c <= 'Z')){
                    letter++;
                }
                else if(c >= '0' && c <= '9'){
                    num++;
                }
                else if(c == ' '){
                    space++;
                }
                else{
                    other++;
                }
            }
            System.out.println(letter);
            System.out.println(space);
            System.out.println(num);
            System.out.println(other);
        }
    }
}
全部评论

相关推荐

我见java多妩媚:大外包
点赞 评论 收藏
分享
孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务