두 개의 숫자 값 중 최대값을 반환하는 데 사용되는 java max() 함수입니다. java max() 함수는 Java에 내장된 함수로 Java.lang.math 클래스에 정의되어 있으므로 프로그램에서 max() 함수를 사용하려면 Java.lang.math 클래스를 import해야 합니다. max() 함수는 숫자 데이터 유형의 두 매개변수를 허용하고 두 숫자 매개변수 중 최대값을 반환합니다. int, float, double 및 long과 같은 데이터 유형의 다양한 매개변수에 대해 오버로드될 수 있습니다. 예외가 발생하지 않습니다.
광고 이 카테고리에서 인기 있는 강좌 3DS MAX 아키텍처 - 전문 분야 | 4개 코스 시리즈 | 3가지 모의고사무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
다음은 구문입니다.
구문:
data_Type max(data_Type x, data_Type y)
data_type은 int, float, double, long이 될 수 있습니다.
아래는 max() 함수의 매개변수입니다.
x와 y는 두 개의 숫자 매개변수이며 그 중 최대 개수가 반환됩니다.
반환값: 함수의 반환값은 최대 2개의 숫자이며, 전달된 매개변수의 data_type과 동일합니다.
Java의 max() 함수는 데이터 유형의 다양한 매개변수에 대해 오버로드될 수 있으므로 다음은 Java의 max() 함수 구문입니다.
public static int max(int x, int y);
public static float max(float x, float y) ;
public static long max( long x, long y );
public static double max(double x, double y);
아래는 예시입니다.
max() 함수를 사용하여 사용자가 전달한 두 정수 중 최대값을 구하는 다음 예제를 통해 max() 함수를 보다 명확하게 이해하기 위해 java 코드를 작성합니다.
코드:
import java.lang.Math; class Demo { public static void main( String[] arg ) { // variable declaration int x = 1024, y = 2034, result; // calling max() built in function which is define in Math built in class result = Math.max(x,y); System.out.println("The maximum number among "+x+" and "+y+" is "+result+"." ); } }
출력:
설명:
위 코드에서와 같이 x와 y는 두 개의 변수로 각각 1024와 2034 값으로 선언 및 초기화되며, 나중에 이 변수들을 매개변수로 전달하여 max() 함수가 호출됩니다(int max(int x, int y) ) 오버로드됨) 따라서 이 함수의 결과는 2034이며, 이는 1024와 2034의 최대 수입니다.
max() 함수를 사용하여 사용자가 전달한 두 개의 이중 숫자 중 최대값을 찾는 java 코드를 아래와 같이 작성합니다.
코드:
import java.lang.Math; class Demo { public static void main( String[] arg ) { // variable declaration double x = 134.78, y = 56.89, result; // calling max() built in function which is define in Math built in class result = Math.max(x,y); System.out.println("The maximum number among "+x+" and "+y+" is "+result+"." ); } }
출력:
설명:
위 코드에서와 같이 x와 y는 두 개의 변수로 각각 134.78과 56.89 double 값으로 선언 및 초기화되며, 나중에 이 변수들을 매개변수로 전달하여 max() 함수가 호출됩니다(double max(double x, double y) 오버로드됨) 따라서 이 함수의 결과는 134.78이며, 이는 1024와 2034의 최대값입니다.
max() 함수를 사용하여 콘솔에서 사용자가 허용하는 두 정수 중 최대값을 찾는 max() 함수를 이해하기 위해 Java 코드를 작성합니다.
코드:
import java.lang.Math; import java.util.Scanner; class Demo { public static void main( String[] arg ) { // variable declaration int x, y, result; // accept two numbers of integer type from console System.out.println( "Enter the Two Numeric value: "); Scanner sc = new Scanner(System.in); x = sc.nextInt(); y = sc.nextInt(); result = Math.max(x,y); //Print the maximum number between x and y System.out.println("The maximum number among "+x+" and "+y+" is "+result+"." ); } }
출력:
위 코드에서와 같이 x와 y는 scanner 개체를 통해 사용자로부터 이러한 변수 값을 선언하고 수락하는 두 개의 변수입니다. 나중에 이 변수들을 매개변수로 전달하여 max() 함수가 호출되므로 사용자가 입력한 10, 20 값을 기준으로 이 함수의 결과는 20이 됩니다.
max() 함수를 사용하여 두 개의 음수 값을 전달하고 아래와 같이 최대값을 찾는 max() 함수에 대한 Java 코드를 작성합니다.
코드:
import java.lang.Math; import java.util.Scanner; class Demo { public static void main( String[] arg ) { // variable declaration int x, y, result; x = -10; y = -20; result = Math.max(x,y); //Print the maximum number between x and y of lower magnitude System.out.println("The maximum number among "+x+" and "+y+" is "+result+"." ); } }
출력:
위 코드에서와 같이 x와 y는 두 개의 변수로 각각 음수 값 -10과 -20 값으로 선언 및 초기화됩니다. 나중에 이 변수를 매개 변수로 전달하여 max() 함수가 호출됩니다. 이 함수는 -10으로 크기가 더 낮습니다.
We write the java code for max() function where we use the max() function to pass positive and negative values and find the maximum, as below.
Code:
import java.lang.Math; import java.util.Scanner; class Demo { public static void main( String[] arg ) { // variable declaration int x, y, result; x = 10; y = -20; result = Math.max(x,y); //Print the maximum number between x and y System.out.println("The maximum number among "+x+" and "+y+" is "+result+"." ); } }
Output :
As in the above code, the x and y are two variables declare and initialize with values 10 and -20 values respectively, and the result of this function is 10.
The java max() function which is a built-in function in Java.lang.math class is used to gets the maximum of two numerical values, as we have seen above with an example.
위 내용은 자바 최대()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!