logo

Java Math.max() yöntemi

    Java.lang.math.max()Verilen iki argümandan Maksimum veya En Büyü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 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) 

Parametreler:

 a: first value b: second value 

Geri dönmek:

 This method returns maximum of two numbers. 
  • Argüman olarak pozitif ve negatif değer sağlarsak bu yöntem pozitif argüman döndürecektir.
  • Her iki negatif değeri de bağımsız değişken olarak sağlarsak, sonuç olarak daha küçük büyüklükteki 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 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)); } } 
Şimdi Test Edin

Çıktı:

 50 

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

Çıktı:

Java'da yapıcı
 25.67 

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

Çıktı:

 -20.38