标签:ext size lin 16px get res stat 一个 class
案例:输入一个字符串,统计每个字符出现的次数。
public class CountDemo { public static void main(String[] args) { Scanner s = new Scanner(System.in); System.out.print("请输入字符串:"); String str = s.nextLine(); Map<Character,Integer> res = new HashMap<>(); for (int i = 0; i < str.length(); i++) { if (res.containsKey(str.charAt(i))){ res.put(str.charAt(i),res.get(str.charAt(i)) + 1); } else { res.put(str.charAt(i),1); } } System.out.println(res); } }
标签:ext size lin 16px get res stat 一个 class
原文地址:https://www.cnblogs.com/superyucong/p/12696962.html