Question: 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

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!