摘要: public static void setRandom(int min, int max, int n, HashSet set) { Random random = new Random(); for (int i = 0; i < n; i++) { int ranInt = random.nextInt(max - min + 1... 阅读全文
posted @ 2017-07-23 12:52 银河末班车 阅读(325) 评论(0) 推荐(0) 编辑