Синтаксис:
public static int max(int a, int b) public static double max(double a, double b) public static long max(long a, long b) public static float max(float a, float b)
Параметри:
a: first value b: second value
Връщане:
This method returns maximum of two numbers.
- Ако предоставим положителна и отрицателна стойност като аргумент, този метод ще върне положителен аргумент.
- Ако предоставим и двете отрицателни стойности като аргумент, числото с по-ниската величина се връща като резултат.
- Ако аргументите не са число (NaN), този метод ще върне NaN.
Пример 1:
public class MaxExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }Тествайте сега
Изход:
50
Пример 2:
public class MaxExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }Тествайте сега
Изход:
mb срещу gb
25.67
Пример 3:
public class MaxExample3 { public static void main(String args[]) { float x = -25.74f; float y = -20.38f; //print the maximum of two numbers System.out.println(Math.max(x, y)); } }Тествайте сега
Изход:
-20.38