How to find the Maximum of Two Numbers in Java - Step by Step Examples



How to find the Maximum of Two Numbers in Java ?

Answer

To find the maximum of two numbers in Java, you can use the Math.max method.



✐ Examples

1 Maximum of Two Numbers

In this example,

  1. We declare two variables a and b and assign values to them.
  2. We use the Math.max method to find the maximum of a and b and store it in a variable named max.
  3. We print the maximum value using System.out.println.

Java Program

// Maximum of Two Numbers
public class Main {
    public static void main(String[] args) {
        int a = 10;
        int b = 15;
        int max = Math.max(a, b);
        System.out.println("Maximum of " + a + " and " + b + " is: " + max);
    }
}

Output

Maximum of 10 and 15 is: 15

Summary

In this tutorial, we learned How to find the Maximum of Two Numbers in Java language with well detailed examples.




More Java Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in Java ?
  2. How to find the Minimum of Two Numbers in Java ?
  3. How to find the Maximum of Three Numbers in Java ?
  4. How to find the Minimum of Three Numbers in Java ?