logo

Metoda Java Math.min().

  • Java.lang.math.min() to wbudowana metoda w Javie, która służy do zwracania wartości minimalnej lub najniższej z podanych dwóch argumentów. Argumenty są pobierane w int, float, double i long.

Składnia:

 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) 

Parametry:

 a: first value b: second value 

Powrót:

 This method returns minimum of two numbers. 
  • Jeśli jako argument podamy wartość dodatnią i ujemną, metoda ta zwróci argument ujemny.
  • Jeśli jako argumenty podamy obie wartości ujemne, jako wynik zostanie zwrócona liczba o większej wartości.
  • Jeśli argumenty nie są liczbą (NaN), ta metoda zwróci NaN.

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 20 

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 -38.67 

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 -55.73