How to find the Maximum of Three Numbers in Java - Step by Step Examples
How to find the Maximum of Three Numbers in Java ?
Answer
To find the maximum of three numbers in Java, you can use the Math.max method.
✐ Examples
1 Maximum of Three Numbers
In this example,
- We declare three variables
a
,b
, andc
and assign values to them. - We use the
Math.max
method to find the maximum of the three numbers. - We print the maximum value.
Java Program
// Maximum of Three Numbers
public class Main {
public static void main(String[] args) {
int a = 10;
int b = 15;
int c = 20;
int maxVal = Math.max(Math.max(a, b), c);
System.out.println("Maximum of " + a + ", " + b + ", and " + c + " is: " + maxVal);
}
}
Output
Maximum of 10, 15, and 20 is: 20
Summary
In this tutorial, we learned How to find the Maximum of Three Numbers in Java language with well detailed examples.