黑马程序员技术交流社区

标题: HashSet&Random [打印本页]

作者: _J2EE_LiXiZhen    时间: 2017-11-15 23:45
标题: HashSet&Random
编写一个程序,获取10个1至20的随机数,要求随机数不能重复。使用迭代器把最终的结果输出到控制台。

[Java] 纯文本查看 复制代码
public class Test {
        public static void main(String[] args) {
                //创建Random对象
                Random r = new Random();
                //创建int数组
                int[] arr = new int[10];
                //循环添加随机数
                for (int i = 0; i < arr.length; i++) {
                        arr = (r.nextInt(20)+1);
                }
               
                //创建HashSet集合
                HashSet<Integer> hs = new HashSet<Integer>();
                //循环添加随机数
                for (int i = 0; i < arr.length; i++) {
                        hs.add(arr);
                }
               
                //创建迭代器对象
                Iterator<Integer> it = hs.iterator();
                while(it.hasNext()) {
                        System.out.println(it.next());
                }
        }
}

作者: s10236    时间: 2017-11-16 01:24
数组也没保证唯一啊





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2