Problem: 2.19


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

Sample Output:

Input the first number: 15

Input the second number: 20

Input the third number: 25

false


Solution:


package com.company;
import java.util.Scanner;
public class lab2problem19{
    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();

        if ((x - y) >= 20 || (y - z) >= 20 || (z - x) >= 20)
        {
            System.out.println(true);
        }
        else{
            System.out.println(false);
        }
    }
}

Previous Post Next Post