Description
Write an application that allows you to enter five integers and displays the values, their mean, and their median. Save the file as MeanMedian.java.
If the list has an even number of values, the median is the numeric average of the values in the two middle positions. How would number 20 work? code please
This is complicated, because the array size is not fixed. A count variable should used to count the actual number of input, if input process is stopped before the elements reaches 20. This creates two problems – if actual data is less than 20, the rest of elements are filled with 0s. So, Array.sort() method use three arguments – int[ ], the first index, the last index+1. Another problem is median should use either one element (odd array size) or two elements (even array size). We have to use a if statement with the remainder division on array size, two different median calculation statements can be used.