Answers for "how to get the sum of all the numbers in the arraylist"

-1

inbuild method to sum of an arraylist elements in java

//If you have a List<Integer>
int sum = list.stream().mapToInt(Integer::intValue).sum();

//If it's an int[]
int sum = IntStream.of(a).sum();
Posted by: Guest on October-21-2020

Code answers related to "how to get the sum of all the numbers in the arraylist"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language