-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColecaoList.java
34 lines (30 loc) · 955 Bytes
/
ColecaoList.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import java.util.ArrayList;
//import java.util.function.Consumer;
public class ColecaoList{
public static void main(String[] args){
ArrayList<Integer>valores = new ArrayList<Integer>();
ArrayList<Integer>dobro = new ArrayList<Integer>();
ArrayList<Integer>par = new ArrayList<Integer>();
ArrayList<Integer>impar = new ArrayList<Integer>();
valores.add(1);
valores.add(2);
valores.add(3);
valores.add(4);
valores.add(5);
valores.add(6);
//Consumer<Integer> dobra = (v)->{dobro.add(v*2);};
//valores.forEach(dobra);
valores.forEach((v)->{
dobro.add(v*2);
if (v%2 == 0) {
par.add(v);
}else{
impar.add(v);
}
});
System.out.println(valores);
System.out.println(dobro);
System.out.println(par);
System.out.println(impar);
}
}