Answered step by step
Verified Expert Solution
Question
1 Approved Answer
in java Given a set of data, output the middle item (if even number of items, output the two middle items). Assume that the data
in java
Given a set of data, output the middle item (if even number of items, output the two middle items). Assume that the data set will always contain less than 20 items.
Ex: If the input is 5 7 9 11 13 -1 (a negative indicates end), the output is:
9
Ex: If the input is 5 7 9 11 -1, the output is:
7 9
Hint: First read the data into an array. Then, based on the array'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