Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Given a set of data, output the middle item (if even number of items, output the two middle items). If the input is 5 7
Given a set of data, output the middle item (if even number of items, output the two middle items). If the input is 5 7 9 11 13 -1 (a negative indicates end), the output is 9. If the input is 5 7 9 11 -1, the output is 7 9. If the input is -1, the output is " " (a blank space).
Hint: First read the data into a vector. Then, based on the vector's size, find the middle item(s).
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started