logo

Metodo Java Math.max()

    Java.lang.math.max()è un metodo integrato in Java che viene utilizzato per restituire il valore massimo o più grande dai due argomenti indicati. Gli argomenti sono int, float, double e long.

Sintassi:

 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 

Ritorno:

 This method returns maximum of two numbers. 
  • Se forniamo un valore positivo e negativo come argomento, questo metodo restituirà un argomento positivo.
  • Se forniamo entrambi i valori negativi come argomento, come risultato verrà restituito il numero con la grandezza inferiore.
  • Se gli argomenti non sono un numero (NaN), questo metodo restituirà NaN.

Esempio 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)); } } 
Provalo adesso

Produzione:

 50 

Esempio 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)); } } 
Provalo adesso

Produzione:

in bilico in CSS
 25.67 

Esempio 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)); } } 
Provalo adesso

Produzione:

 -20.38