Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can you help label these lines. I think I have it but an second guessing myself now. C++ Open the document below and match the

Can you help label these lines. I think I have it but an second guessing myself now. C++

Open the document below and match the line numbers presented with what that part of the program is called.

Can you help label these lines. I think I have it but an second guessing myself now. C++

Open the document below and match the line numbers presented with what that part of the program is called.

#include

#include

using namespace std;

void getTestScores (double[], int);

double getTotal (const double[], int);

double getLowest (const double[], int);

int main()

{

const int SIZE = 4;

double testScores[SIZE],

total,

lowestScore,

average;

cout << fixed << showpoint << setprecision(1);

getTestScores(testScores, SIZE);

total = getTotal(testScores, SIZE);

lowestScore = getLowest(testScores, SIZE);

total -= lowestScore;

average = total / (SIZE - 1);

cout << "The average with the lowest score "

<< "dropped is " << average << ". ";

return 0;

}

void getTestScores(double scores[], int size)

{

int index;

for (index = 0; index <= size - 1; index++)

{

cout << "Enter test score number "

<< (index + 1) << ": ";

cin >> scores[index];

}

}

double getTotal(const double numbers[], int size)

{

double total = 0;

for (int count = 0; count < size; count++)

total += numbers[count];

return total;

}

double getLowest(const double numbers[], int size)

{

double lowest;

lowest = numbers[0];

for (int count = 1; count < size; count++)

{

if (numbers[count] < lowest)

lowest = numbers[count];

}

return lowest;

}

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

Spatial Database Systems Design Implementation And Project Management

Authors: Albert K.W. Yeung, G. Brent Hall

1st Edition

1402053932, 978-1402053931

Students also viewed these Databases questions