Write a C++ program that will ask user enter 3 numbers and you will display the median of these three numbers.

The interface of program should look like the following.  User can enter any three numbers.

Enter three numbers.
45
23
99

The median of 45, 23 and 99 is 45.

Click here to see the way to get median.