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,
- We declare two variables
a
andb
and assign values to them. - We use the
Math.max
method to find the maximum ofa
andb
and store it in a variable namedmax
. - 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.