随机数的排序

import java.util.ArrayList;
import java.util.Collections;
import java.util.Random;

/**
* 定义一个Collection集合,随机生成10个【1,100】之间的数据添加到集合
* 对集合进行排序
* 使用增强for遍历集合元素
*/
public class SuiJi10 {
public static void main(String[] args) {
//创建集合对象
ArrayList<Integer> co = new ArrayList<>();
//生成随机数
for (int i = 0; i < 10 ; i++) {
Random r = new Random();
int num = r.nextInt(100)+1;
co.add(num);
}
//对集合排序
Collections.sort(co);
System.out.println(co);
}
}
上一篇:Kibana


下一篇:从零开始devops-elk搭建