logo

Java Math.max() メソッド

    Java.lang.math.max()これは、指定された 2 つの引数から最大値または最大値を返すために使用される Java の組み込みメソッドです。引数は int、float、double、long で受け取ります。

構文:

 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) 

パラメーター:

 a: first value b: second value 

戻る:

 This method returns maximum of two numbers. 
  • 引数として正と負の値を指定すると、このメソッドは正の引数を返します。
  • 両方の負の値を引数として指定すると、小さい方の値が結果として返されます。
  • 引数が数値 (NaN) でない場合、このメソッドは NaN を返します。

例 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)); } } 
今すぐテストしてください

出力:

優先キューJava
 50 

例 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)); } } 
今すぐテストしてください

出力:

 25.67 

例 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)); } } 
今すぐテストしてください

出力:

 -20.38