黑马程序员技术交流社区
标题:
.用List方法,10个1-20的随机元素不能重复数字,排序
[打印本页]
作者:
你好世界
时间:
2016-1-26 00:25
标题:
.用List方法,10个1-20的随机元素不能重复数字,排序
public class 练习4 {
/**
4.用List方法,10个1-20的随机元素不能重复数字,排序
*/
public static void main(String[] args) {
Random r=new Random();
List<Integer>a=new ArrayList<Integer>();
while(true){
int x=r.nextInt(20)+1;
if(!a.contains(x)){
a.add(x);
}
if(a.size()==10){
break;
}
}
Collections.sort(a);
System.out.println(a);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2