I need help with a simple Java program for finding the median value in a list of values with the following requirements:
• Create an array with an even number of values in it (an odd number of values is little bit trickier, so if you want a challenge, do it for either an even or odd number of values)
• Find the value with an equal number of values greater than the value as there are values less than the value
• Your solution must not require a sorted list of values • Output the median value
This assignment is intended to get you to demonstrate basic knowledge of arrays, and to create methods with both input and output.