logo

Java Math.max() metode

    Java.lang.math.max()ir Java iebūvēta metode, ko izmanto, lai atgrieztu maksimālo vai lielāko vērtību no dotajiem diviem argumentiem. Argumenti tiek ņemti int, float, double un long.

Sintakse:

 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 

Atgriezties:

 This method returns maximum of two numbers. 
  • Ja kā argumentu sniedzam pozitīvu un negatīvu vērtību, šī metode atgriezīs pozitīvu argumentu.
  • Ja kā argumentu sniedzam abas negatīvās vērtības, rezultāts tiek atgriezts skaitlis ar mazāku lielumu.
  • Ja argumenti nav skaitlis (NaN), šī metode atgriezīs NaN.

1. piemērs:

 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)); } } 
Izmēģiniet to tagad

Izvade:

 50 

2. piemērs:

 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)); } } 
Izmēģiniet to tagad

Izvade:

 25.67 

3. piemērs:

 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)); } } 
Izmēģiniet to tagad

Izvade:

 -20.38