import java.util.*;
public class Exercise62 {
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Input the first number : ");
int x = in.nextInt();
System.out.print("Input the second number: ");
int y = in.nextInt();
System.out.print("Input the third number : ");
int z = in.nextInt();
System.out.println((Math.abs(x - y) >= 20 || Math.abs(y - z) >= 20 || Math.abs(z - x) >= 20));
}
}
Sample Output:
Input the first number : 15
Input the second number: 20
Input the third number : 25
false
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer