用程序给出随便大小的10个数字,序号为1-10,按从小到大的顺序输出,并输出对应的序号
@Testpublic void test9() {Random random = new Random();HashMap<Integer, Integer> map = new HashMap<>();for (int i = 0; i < 10; i++) {map.put(i + 1, random.nextInt(1000));}for (En...