0
/ 50
Write a function in Java that implements the following logic: Given three ints, a
, b
, and c
, one of them is small, one is medium and one...
Write a function in Java that implements the following logic: Given
three ints, a
, b
, and c
, one of them is small, one is medium
and one is large. Return true if the three values are evenly
spaced, so the difference between small and medium is the same
as the difference between medium and large.
Your feedback will appear here when you check your answer.