Answers for "how we can print the sum of elements of arraylist in java"

1

sum of arraylist java 8

int total = numbers.stream().mapToInt(i -> i.intValue()).sum();
		System.out.print(total);
Posted by: Guest on May-30-2020
1

inbuild method to sum of an arraylist elements in java

doubleList.stream().reduce((a,b)->a+b).get();
Posted by: Guest on October-21-2020

Code answers related to "how we can print the sum of elements of arraylist in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language