Q:

Write a Java program that accepts three integer values and return true if one of them is 20 or more and less than the substractions of others

0

 Write a Java program that accepts three integer values and return true if one of them is 20 or more and less than the substractions of others


Sample Output:

Input the first number : 15                                            
Input the second number: 20                                            
Input the third number : 25                                            
false

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now