logo

Metoda Java Math.max().

    Java.lang.math.max()je ugrađena metoda u Javi koja se koristi za vraćanje maksimalne ili najveće vrijednosti iz zadana dva argumenta. Argumenti se uzimaju u int, float, double i long.

Sintaksa:

 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 

Povratak:

 This method returns maximum of two numbers. 
  • Ako damo pozitivnu i negativnu vrijednost kao argument, ova metoda će vratiti pozitivan argument.
  • Ako damo obje negativne vrijednosti kao argument, broj s nižom veličinom vraća se kao rezultat.
  • Ako argumenti nisu broj (NaN), ova metoda će vratiti NaN.

Primjer 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)); } } 
Testirajte sada

Izlaz:

 50 

Primjer 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)); } } 
Testirajte sada

Izlaz:

 25.67 

Primjer 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)); } } 
Testirajte sada

Izlaz:

 -20.38