Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

//include any standard libraries needed //include all comments, c++, use getline and pointers // - Passes in an array along with the size of the

//include any standard libraries needed

//include all comments, c++, use getline and pointers

// - Passes in an array along with the size of the array.

// - Returns the mean of all values stored in the array.

double mean(const double array[], int arraySize);

// - Passes in an array, the size of the array by reference, and the index of a value to be removed from the array.

// - Removes the value at this index by shifting all of the values after this value up, keeping the same relative order of all values not removed.

// - Reduces arraySize by 1.

void remove(double array[], int &arraySize, int index);

// - Passes in an array and the size of the array.

// - Outputs each value in the array separated by a comma and space, with no comma, space or newline at the end.

void display(const double array[], int arraySize);

const int ARR_CAP = 100;

int main(int argc, char *argv[]) {

// verify file name provided on command line

// open file and verify it opened

// Declare an array of doubles of size ARR_CAP.

// Fill the array with up to ARR_CAP doubles from the file entered at the command line.

// Call the mean function passing it this array and output the

// value returned.

// Ask the user for the index (0 to size - 1) of the value they want to remove.

// Call the display function to output the array.

// Call the remove function to remove the value at the index

// provided by the user.

// Call the display function again to output the array

// with the value removed.

// Call the mean function again to get the new mean

return 0;

}

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

Database Horse Betting The Road To Absolute Horse Racing 2

Authors: NAKAGAWA,YUKIO

1st Edition

B0CFZN219G, 979-8856410593

More Books

Students also viewed these Databases questions

Question

Explain how phosphocreatine acts as an ATP "buffer."

Answered: 1 week ago

Question

attributes for theater and branch of cinema

Answered: 1 week ago

Question

3. Describe the process of a union drive and election.

Answered: 1 week ago

Question

6. What actions might make employers lose elections?

Answered: 1 week ago