logo

Metoda Java Math.max().

    Java.lang.math.max()este o metodă încorporată în Java care este folosită pentru a returna valoarea maximă sau cea mai mare din cele două argumente date. Argumentele sunt luate în int, float, double și long.

Sintaxă:

 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) 

Parametri:

 a: first value b: second value 

Întoarcere:

 This method returns maximum of two numbers. 
  • Dacă oferim valori pozitive și negative ca argument, această metodă va returna argument pozitiv.
  • Dacă furnizăm ambele valori negative ca argument, numărul cu magnitudinea mai mică este returnat ca rezultat.
  • Dacă argumentele nu sunt un număr (NaN), această metodă va returna NaN.

Exemplul 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)); } } 
Testează-l acum

Ieșire:

 50 

Exemplul 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)); } } 
Testează-l acum

Ieșire:

 25.67 

Exemplul 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)); } } 
Testează-l acum

Ieșire:

 -20.38