Set集合练习:不重复的随机数(JAVA)
编写一个程序,获取10个1-20之间的随机数,要求随机数不能重复,并在控制台输出public class SetDemo { public static void main(String[] args) { //创建Set集合对象 // Set<Integer> set = new HashSet<Integer>(); 无序 Set<Integer> set = new TreeSet<