-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
25 lines (23 loc) · 743 Bytes
/
Main.java
File metadata and controls
25 lines (23 loc) · 743 Bytes
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
package GenericBox;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static <T> void main(String[] args) throws IOException {
// BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
// List<Double> list = new ArrayList<>();
//
// int n = Integer.parseInt(reader.readLine());
//
// for (int i = 0; i < n; i++) {
// double input = Double.parseDouble(reader.readLine());
// list.add(input);
// }
//
// double element = Double.parseDouble(reader.readLine());
//
// System.out.println(Box.countDoubles(list,element));
}
}