- Java.lang.math.min() je vgrajena metoda v Javi, ki se uporablja za vrnitev najmanjše ali najnižje vrednosti iz danih dveh argumentov. Argumenti so sprejeti v int, float, double in long.
Sintaksa:
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)
Parametri:
a: first value b: second value
Vrnitev:
This method returns minimum of two numbers.
- Če kot argument podamo pozitivno in negativno vrednost, bo ta metoda vrnila negativni argument.
- Če kot argument podamo obe negativni vrednosti, se kot rezultat vrne število z višjo magnitudo.
- Če argumenti niso število (NaN), bo ta metoda vrnila NaN.
Primer 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)); } }Preizkusite zdaj
Izhod:
20
Primer 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)); } }Preizkusite zdaj
Izhod:
-38.67
Primer 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)); } }Preizkusite zdaj
Izhod:
-55.73