Question: Consider the function definition below. / * * Requires: * Answer in question below * * Modifies: * Answer in question below * * Effects:

Consider the function definition below.
/
*
*
Requires:
*
Answer in question below
*
*
Modifies:
*
Answer in question below
*
*
Effects: Repeatedly prompts the user to enter a value
*
count number of times.
*
Returns the average of values entered by the user.
*
/
double average
(
int count
)
{
cout
<
<
"Calculating average of
"
<
<
count
<
<
"
values."
<
<
endl;
double sum
=
0
.
0
;
double value
=
0
.
0
;
for
(
int i
=
0
; i
<
count; i
+
+
)
{
cout
<
<
"Enter a value:
"
;
cin
>
>
value;
sum
+
=
value;
}
return sum
/
count;
}
Which of the following should be added to the Modifies part of the RME? Select all that apply.
Consider the function definition below.
/
*
*
Requires:
*
Answer in question below
*
*
Modifies:
*
Answer in question below
*
*
Effects: Repeatedly prompts the user to enter a value
*
count number of times.
*
Returns the average of values entered by the user.
*
/
double average
(
int count
)
{
cout
<
<
"Calculating average of
"
<
<
count
<
<
"
values."
<
<
endl;
double sum
=
0
.
0
;
double value
=
0
.
0
;
for
(
int i
=
0
; i
<
count; i
+
+
)
{
cout
<
<
"Enter a value:
"
;
cin
>
>
value;
sum
+
=
value;
}
return sum
/
count;
}
Which of the following should be added to the Modifies part of the RME? Select all that apply.
count is an integer and the number of values to enter.
count
sum
value
cin
cout
Nothing

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!