Write a java program that...invokes these methods: **(i have them written its th
ID: 3642586 • Letter: W
Question
Write a java program that...invokes these methods: **(i have them written its the invoking part im having problems with )
public static int findMax(int[] numbers) , public static int findMin(int[] numbers) , public static int findRange(int[] numbers) , public static int findSum(int[] numbers) , public static double findMean(int[] numbers) , public static double findMedian(int[] numbers) , public static double findSTD(int[] numbers) , public static void main(String args[])
calculates the statistics and output them to the screen all in one line with proper heading: ( printf method would work for this.) An example of output statistics from this program:
Count Sum Max Min Range Median Mean STD
20 190 19 0 19 9.0 9.500 5.788