使用Set集合,生成1-25以內不重複的7個隨機整數

package work731; import java.util.*; // 使用Set集合,生成1-25以內不重複的7個隨機整數 public class Demo2 { public static void main(String[] args) { Set<Integer> set=new HashSet<>(); Random r
相關文章
相關標籤/搜索