class LambdaEx { public static void main(String[] args) { ArrayList list = new ArrayList(); int i = 0; while (i System.out.print(j+",")); System.out.println(); //list에서 2또는 3의 배수를 제거한다. list.removeIf(x -> x % 2 == 0 || x % 3 == 0); System.out.println(list); list.replaceAll(k -> k * 10); //list의 각 요소에 10을 곱한다. System.out.println(list..