Practice Question 8
Question 8. Write a Java program to accept two integers and return true if either is 15 or if their sum or difference is 15.
Program-
import java.util.*; public class Exerecise11 { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("Input the first integer number: "); int x = in.nextInt(); System.out.print("Input the second integer number: "); int y = in.nextInt(); System.out.print("The result is: "+calculate(x, y)); System.out.printf("\n"); } public static boolean calculate(int p, int q) { if(p == 15 || q == 15) return true; return ((p + q) == 15 || Math.abs(p - q) == 15); } } |