import java.util.LinkedHashMap; import java.util.Map; import java.util.Scanner; public class Main1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.nextLine(); String[] strs = str.split("\\W+"); Map<String, Integer> map = new LinkedHashMap<String, Integer>(); for (String s : strs) { String c=s.toUpperCase(); if (map.containsKey(c)) { map.put(c, (map.get(c) + 1)); } else { map.put(c, 1); } } int max = 0; for (String c : map.keySet()) { if (c.length() > max) { max = c.length(); } } for (String c : map.keySet()) { for (int i = 0; i < max - c.length(); i++) { System.out.print(" "); } System.out.print(c.toUpperCase() + ":"); for (int i = 0; i < map.get(c); i++) { System.out.print("*"); } System.out.println(map.get(c)); } } }
0.0分
1 人评分
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:703 |
【明明的随机数】 (C++代码)浏览:834 |
【亲和数】 (C语言代码)浏览:530 |
上车人数 (C语言代码)浏览:816 |
【亲和数】 (C语言代码)浏览:908 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:1072 |
【矩阵】 (C++代码)浏览:999 |
1013题解浏览:596 |
模拟计算器 (C语言代码)浏览:2366 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:617 |