logo

Java Math.min() yöntemi

  • Java.lang.math.min(), verilen iki argümandan Minimum veya En Düşük değeri döndürmek için kullanılan, Java'da yerleşik bir yöntemdir. Argümanlar int, float, double ve long şeklinde alınır.

Sözdizimi:

 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) 

Parametreler:

 a: first value b: second value 

Geri dönmek:

 This method returns minimum of two numbers. 
  • Argüman olarak pozitif ve negatif değer sağlarsak bu yöntem negatif argüman döndürecektir.
  • Her iki negatif değeri de bağımsız değişken olarak sağlarsak, sonuç olarak büyük olan sayı döndürülür.
  • Bağımsız değişkenler bir sayı (NaN) değilse, bu yöntem NaN değerini döndürür.

Örnek 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)); } } 
Şimdi Test Edin

Çıktı:

 20 

Örnek 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)); } } 
Şimdi Test Edin

Çıktı:

 -38.67 

Örnek 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)); } } 
Şimdi Test Edin

Çıktı:

 -55.73