-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoop40.java
57 lines (40 loc) · 1.32 KB
/
oop40.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Scanner;
// class Test2 implements Cloneable{
// LinkedList <Integer> l3 =new LinkedList<>();
// public Test2(){
// Scanner sc = new Scanner(System.in);
// int n=sc.nextInt();
// for (int i = 0; i < 10; i++) {
// System.out.println("Add value at = " + i);
// l3.add(sc.nextInt());
// }
// }
// }
public class oop40 {
public static void main(String[] args) {
LinkedList <Integer> l1 =new LinkedList<>();
LinkedList <Integer> l2 =new LinkedList<>();
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
for (int i = 0; i < n; i++) {
System.out.println("Add value at = " + i+"Adding "+l2.add(i));
}
// l1.add(45);
// l1.add(34);
// l1.add(23);
// l1.add(321);
// l1.remove(2);
// l1.add(1, 234);
// l1.isEmpty();
// t2.l3.contains(12);
// t2.l3.removeIf(n->(n%3==0));
l2.removeFirstOccurrence(200);
System.out.println(l2);
// System.out.println(l1);
// for(int i=0;i<l1.size();i++){
// System.out.println(l1.get(i));
// }
}
}