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