X2: lessBy10

Write a function in Java that implements the following logic: Given three ints, a b c, return true if one of them is 10 or more less than one of the others.

Your Answer:

x
 
1
public boolean lessBy10(int a, int b, int c)
2
{
3
    
4
}
5

Feedback

Your feedback will appear here when you check your answer.