728x90

Math.max()

  • static int max(int a , int b)
  • static double max(double a , double b)
  • static float max(float a , float b)
  • static long max(long a , long b)
  • max() 함수는 두 인자 값 중 큰 값을 리턴하는 함수이다.
Math.max(a, b)

 

Math.max() 예제

public class Main{ 
    public static void main(String[] args){ 
    
    System.out.println( Math.max(33, 3) ); // 33 
    System.out.println( Math.max(3.14, 1.5) ); // 3.14
    
    } 
}

 

Math.min()

  • static int min(int a , int b)
  • static double min(double a , double b)
  • static float min(float a , float b)
  • static long min(long a , long b)
  • min() 함수는 두 인자 값 중 작은 값을 리턴하는 함수이다.
Math.min(a, b);

 

Math.min() 예제

public class Main{ 
    public static void main(String[] args){ 
    
    System.out.println( Math.min(33, 3) ); // 3
    System.out.println( Math.min(3.14, 1.5) ); // 1.5
    
    } 
}
728x90

+ Recent posts