Here you can find the source of getAverage(List
private static double getAverage(List<Double> values)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { private static double getAverage(List<Double> values) { double sum = 0d; for (Double d : values) { sum += d;//from ww w . j a va 2s . c om } return sum / values.size(); } }