- Formulate the steps of identifying the median from five unique numbers and visualize them in flow chart.
- Develop an application that shows the median after getting five unique numbers from users.
- Extend the feature for allowing six unique numbers input and computing the median.
Example:
Input: 5 4 2 1 10
Output: Median = 4
I found this question in a Problem Solving with C++ by Walter Savitch but I couldn't solve it. Can anyone explain it to me?