public static int average(int[] arr), it calculate and return the average of int[] array. public static int average(String fileName), it reads numbers from the file and calcualte and return average of those numbers. code example
Example: find average of numbers in array java
public class JavaExample {
public static void main(String[] args) {
double[] arr = {19, 12.89, 16.5, 200, 13.7};
double total = 0;
for(int i=0; i<arr.length; i++){
total = total + arr[i];
}
double average = total / arr.length;
System.out.format("The average is: %.3f", average);
}
}