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
;
double value
;
for
int i
; 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
;
double value
;
for
int i
; 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.
Nothing
sum
count
value
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
