A have array with numbers, for example 1,2,3,4,5.
I need to return the element which have nearest value to the average of whole array. For example,
1+2+3+4+5=15
15/5=3
The result should be the number 3.
If there is no number that is the same as the average, the result should be the nearest number from the array.
I need only the method which will return that value.
Integer sum = 0;
Integer a = 0;
for(int i=0; i<array.getLength();i++)
{
a = array.get(i); sum=sum+a;
}
Integer average= sum/array.getLength();
return average;
}
I tried this, but it returns only the exact value as the average, not the nearest.