(String args[])
| 11 | System.out.println("max = " + max); |
| 12 | } |
| 13 | public static void main(String args[]) { |
| 14 | ArrayList<Integer> list = new ArrayList<>(); |
| 15 | list.add(1); |
| 16 | list.add(2); |
| 17 | list.add(3); |
| 18 | list.add(4); |
| 19 | list.add(5); |
| 20 | |
| 21 | printMax(list); |
| 22 | } |
| 23 | } |