Answers for "variable to display the average of all numbers in an array list in java"

1

calculate mean from arraylist jaca

for(int i = 0; i<sum.size(); i++)
    total = total+sum.get(i);
avg = total / sum.size();
System.out.println("The Average IS:" + avg);
Posted by: Guest on October-17-2020

Code answers related to "variable to display the average of all numbers in an array list in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language