Question: I'm witing a method using Java that accepts an array of numbers and calucates the average. Can you check if my getAverage method is correct?
I'm witing a method using Java that accepts an array of numbers and calucates the average. Can you check if my getAverage method is correct? How do I call it in the main function by hard coding values into an array? It's not working for me. Let me know!
public static void main(String[] args) { getAverage{1,2,3};
}
public static double getAverage (int[] array){ int sum = 0; for (int i : array ) sum += i; return ((double) sum)/array.length; } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
