import java.util.Map; import java.util.Scanner; import java.util.TreeMap; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long num=sc.nextInt(); Map<Integer, Integer> map = new TreeMap<Integer, Integer>(); //注意要用TreeMap for (long i = 0; i < num; i++) { int s=sc.nextInt(); if (map.containsKey(s)) { map.put(s, (map.get(s) + 1)); } else { map.put(s, 1); } } for (Integer c : map.keySet()) { System.out.print(c + " "); System.out.println(map.get(c)); } } }
0.0分
2 人评分
震宇大神的杀毒软件 (C语言代码)浏览:1348 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
C语言训练-尼科彻斯定理 (C语言代码)浏览:509 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:597 |
小九九 (C语言描述,不看要求真坑爹)浏览:1006 |
IP判断 (C语言代码)浏览:592 |
小O的数字 (C语言代码)浏览:1490 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:735 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:663 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:584 |