Map map = new HashMap();for(int i : num){ Integer c = map.get(i); if( c==null){ map.put(i,1);} else{map.put(i,c+1);}}System.out.println(map);
这个不能懒,只能自己别,可以提示你,用数组的自带的函数统计出总共的个数,然后一个for循环依次统计,遇到新数字就定义新的整型变量来统计
一楼的答案是对的