A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

//编写一个程序,获取10个1至20的随机数,要求随机数不能重复。
public class Test2 {
        public static void main(String[] args) {
                //定义数组,数组大小为10
                int arr[] = new int[10];
                int temp = 0;
                //外层循环取随机数
                for (int i = 0; i < arr.length; i++) {       
                        temp =(int)(Math.random()*20)+1;
                        //内存循环判断该随机数是否存在,如果存在则重新取随机数
                        for (int j = 0; j < arr.length; j++) {               
                                if(temp==arr[j] ){
                                        temp =(int)(Math.random()*20)+1;
                                        j=-1;
                                }
                        }
                        //把不存在的随机数存到数组
                        arr[i]=temp;
                        System.out.print(arr[i]+"\t");
                }               
        }
}

6 个回复

倒序浏览
使用Random对象更简单啦
回复 使用道具 举报
不错不错  顶一个  
回复 使用道具 举报
不明觉厉。。。
回复 使用道具 举报
受教了,顶楼主
回复 使用道具 举报
顶一个!!
回复 使用道具 举报
                 赞一个
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马