Answers for "get max in a list in jav"

1

how to get the highest value in a list java

import java.util.*;
public class CollectionsMaxExample2 {
public static void main(String[] args) {
//Create collections lists.
List<Integer> list = Arrays.asList(20, 10, 100, 140, 250);
Integer max = Collections.max(list);
System.out.println("Maximum element is: "+max);
}
Posted by: Guest on January-08-2021
2

find max integer in arraylist java

List<Integer> list = new ArrayList<Integer>();
Collections.max(list)
Posted by: Guest on January-17-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language