首页 > 代码库 > 代码实现:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

代码实现:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

import java.util.Scanner;
import java.util.TreeMap;

//输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
public class Test {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println("请输入一行字符:");
		String s = sc.nextLine();
		char[] c = s.toCharArray();
		TreeMap<Character, Integer> tm = new TreeMap<>();
		for (char d : c) {
			if (!tm.containsKey(d)) {
				tm.put(d, 1);
			} else {
				tm.put(d, tm.get(d) + 1);
			}
		}
		for (Character ca : tm.keySet()) {
			System.out.println(ca + "(" + tm.get(ca) + ")");
		}
	}

}

 

代码实现:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。