Question: Step 1 ( 1 5 pts ) . Use a loop to process each vector element and output the minimum and maximum values. Submit for

Step 1(15 pts). Use a loop to process each vector element and output the minimum and maximum values. Submit for grading to confirm one test passes.
Ex: If input is:
641549917
the output is:
Minimum: 1 Maximum: 99
Step 2(15 pts). Use a loop to sum all vector elements and calculate the mean (or average). Output the mean with one decimal place using cout << fixed << setprecision(1); once before all other cout statements. Submit for grading to confirm two tests pass.
Ex: If input is:
641549917
the output is:
Minimum: 1 Maximum: 99 Mean: 21.7
Step 3(15 pts). Use a loop to determine if the vector is a palindrome, meaning values are the same from front to back and back to front. Output "true" or "false". Submit for grading to confirm three tests pass.
Ex: If input is:
9123454321
the output is:
Minimum: 1 Maximum: 5 Mean: 2.8 Palindrome: true
Step 4(7.5 pt). main() includes a call to sort(), which sorts the vector elements into ascending order. Do not sort the vector before step 4. After sorting, identify the median. The median is located in the middle of the vector if the vector's size is odd. Otherwise, the median is the average of the middle two values. Output the median with one decimal place. Submit for grading to confirm four tests pass.
Ex: If input is:
6225677
the output is:
Minimum: 2 Maximum: 7 Mean: 4.8 Palindrome: false Median: 5.5
Step 5(22.5 pts). Challenging! Identify the mode after the vector is sorted in ascending order. The mode is the value that appears most frequently. Assume only one mode exists. Hint: Use a loop to process each vector element, looking for the longest sequence of identical values. Submit for grading to confirm all tests pass.
Ex: If input is:
9122233456
the output is:
Minimum: 1 Maximum: 6 Mean: 3.1 Palindrome: false Median: 3.0 Mode: 2

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 Programming Questions!