Skip to content

Instantly share code, notes, and snippets.

View vontell's full-sized avatar
🏙️
Philadelphia

Aaron Vontell vontell

🏙️
Philadelphia
View GitHub Profile
public class CumulativeAverage {
public static void main(String[] args) {
int[] data = new int[] { 2, 4, 6 };
int total = 0;
int average = 0;
int n = 0;
for (int value : data) {
n += 1;
total += value;
average = total / n;