need help with this
generate only the pseudocode. No charting is required, but you will have to incorporate the bubble sort algorithm to ensure the selling prices are in order so you can determine the median selling price. Do not assume that they will be entered in order.
Problem:
Input the selling prices of all homes in Botany Bay sold during the year 2002 and determine the median selling price. The median of a list of N numbers is The middle number of the sorted list, if N is odd. The average of the two middle numbers in the sorted list, if N is
even.(Hint: After inputting the prices into an array, sort that array.)