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



How to find the Minimum of Two Numbers in Java ?

Answer

To find the minimum of two numbers in Java, you can use the Math.min method.



✐ Examples

1 Minimum of Two Numbers

In this example,

  1. We declare two variables a and b and assign values to them.
  2. We use the Math.min method to find the minimum of a and b.
  3. We print the minimum value.

Java Program

// Minimum of Two Numbers
public class Main {
    public static void main(String[] args) {
        int a = 10;
        int b = 15;
        int min = Math.min(a, b);

        System.out.println("Minimum of " + a + " and " + b + " is: " + min);
    }
}

Output

Minimum of 10 and 15 is: 10

Summary

In this tutorial, we learned How to find the Minimum 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 ?