JAVA - min 함수


Math.min()

min() 함수는 두 개의 수를 인자로 받아 더 작은 값을 리턴한다.

인자로는 int, long, double, float가 들어올 수 있다.

System.out.println(Math.min(12,1));