[小练习] 统计字符串中大写英文字母、小写英文字母、非英文字母数

public class Main {
    public static void main(String[] args) {
        String s = "1Hello**World!";
        char[] array = s.toCharArray();
        int lowerCase = 0;
        int upperCase = 0;
        int nonAlpha = 0;
        for (char c : array) {
            if (c>=65 && c<=90) {
                upperCase++;
            } else if (c>=97 && c<=122) {
                lowerCase++;
            } else {
                   nonAlpha++;
            }
        }
        System.out.println(upperCase);
        System.out.println(lowerCase);
        System.out.println(nonAlpha);
    }
}

你可能感兴趣的:([小练习] 统计字符串中大写英文字母、小写英文字母、非英文字母数)