MCPcopy Create free account
hub / github.com/apna-college/Alpha / main

Method main

11_ArrayLists/PrintMaximum.java:13–22  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 2

printMaxMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected