首页 > 编程语言 > 详细

生成一个长度为10的整数数组,数组中每个元素都不同(数组中值的范围为1~20)

时间:2017-12-15 22:02:34      阅读:262      评论:0      收藏:0      [点我收藏+]

public static void main(String[] args) {

//方法一:利用for循环
// int arr[]=new int[10];
// for (int i = 0; i < arr.length; i++) {
// arr[i]=r.nextInt(20)+1;
// for (int j = 0; j < i; j++) {
// if(arr[i]==arr[j]){
// i--;
// }
// }
// }
// System.out.println(Arrays.toString(arr));

//方法二  set集合

HashSet<Integer> hashSet = new HashSet<>();

Random r = new Random();
while (hashSet.size() < 10) {

hashSet.add(r.nextInt(10));
//System.out.println("执行了");
}
System.out.println(hashSet);


}

生成一个长度为10的整数数组,数组中每个元素都不同(数组中值的范围为1~20)

原文:http://www.cnblogs.com/bigdatashan/p/8044966.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!