输出条件: 有序(排序算法、TreeSet) 不重复(哈希表、TreeSet) 换行。。 已经很明显了,使用TreeSet实现最为简单、快捷并且不用写额外的算法或调用API import java.io.*; import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); TreeSet<Integer> set = new TreeSet<>(); ...