w3resource

Java: Accept two integers and return true if the either one is 15 or if their sum or difference is 15

Java Math Exercises: Exercise-11 with Solution

Write a Java program to accept two integers and return true if either is 15 or if their sum or difference is 15.

Sample Solution:

Java Code:

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);
   }
}

Sample Output:

Input the first integer number: 15                                     
Input the second integer number: 25                                    
The result is: true    

Flowchart:

Flowchart: Accept two integers and return true if the either one is 15 or if their sum or difference is 15.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to accept a float value of number and return a rounded float value.
Next: Write a Java program to count the number of prime numbers less than a given positive number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/math/java-math-exercise-11.php