Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

9. Median Function In statistics, when a set of values is sorted in ascending or descending order, its median is the middle value. If the

9. Median Function In statistics, when a set of values is sorted in ascending or descending order, its median is the middle value. If the set contains an even number of values, the median is the mean, or average, of the two middle values. Write a function that accepts as arguments the following: A) An array of integers B) An integer that indicates the number of elements in the array The function should determine the median of the array. This value should be returned as a double. (Assume the values in the array are already sorted.) Demonstrate your pointer prowess by using pointer notation instead of array notation in this function.

output keep giving me median 0 pleae write comments so i know how did you fix it

code

//system libraries #include #include #include using namespace std; //user libraries

//global constants only

//Functions prototypes here float MedianV(int*arrptr,int n); //Program execution start here int main(int argc, char** argv) { //Declare variables here int *array=new int[20]; //loop variable and n size of array int i,n; float Median; cout<<"Enter size of array"; cin>>n; cout<<"Enter elements of array"; for(i=0;i>*(array+1); } //input

//process //function call that returns median value Median=MedianV(array,n); cout<<"Median is "<

//Exit return 0; } float MedianV(int*arrptr,int n) { float median; if(n%2==1) {

if(n%2==1)

return arrptr[n/2];

else

return ((arrptr[n/2-1]+arrptr[n/2])/2.0); } }

output keep giving me median 0

Enter size of array5 Enter elements of array26 23 33 45 65 Median is 0 RUN SUCCESSFUL (total time: 27s)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Readings In Database Systems

Authors: Michael Stonebraker

2nd Edition

0934613656, 9780934613651

More Books

Students also viewed these Databases questions