logo

자바 Math.ceil() 메서드

그만큼 java.lang.Math.ceil() 인수 또는 수학 정수보다 크거나 같은 가장 작은 정수 값을 찾는 데 사용됩니다.

통사론

 public static double ceil(double x) 

매개변수

 x= a value 

반품

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • 인수가 양수 또는 음수 double 값인 경우 이 메서드는 다음을 반환합니다. 최고가치 .
  • 인수가 다음과 같은 경우 NaN , 이 메서드는 반환됩니다 같은 주장 .
  • 인수가 다음과 같은 경우 무한대 , 이 메서드는 반환됩니다 무한대 인수와 동일한 부호를 사용합니다.
  • 인수가 긍정적이거나 부정적인 경우 , 이 메서드는 반환됩니다 인수와 동일한 부호를 사용합니다.
  • 인수가 0보다 작고 -1.0보다 큰 경우 이 메서드는 다음을 반환합니다. 음수 0 산출.

실시예 1

 public class CeilExample1 { public static void main(String[] args) { double x = 83.56; // Input positive value, Output ceil value of x System.out.println(Math.ceil(x)); } } 
지금 테스트해보세요

산출:

 84.0 

실시예 2

 public class CeilExample2 { public static void main(String[] args) { double x = -94.73; // Input negative value, Output ceil value of x System.out.println(Math.ceil(x)); } } 
지금 테스트해보세요

산출:

 -94.0 

실시예 3

 public class CeilExample3 { public static void main(String[] args) { double x = -1.0 / 0; // Input negative infinity, Output negative infinity System.out.println(Math.ceil(x)); } } 
지금 테스트해보세요

산출:

 -Infinity 

실시예 4

 public class CeilExample4 { public static void main(String[] args) { double x = 0.0; // Input positive zero, Output positive zero System.out.println(Math.ceil(x)); } } 
지금 테스트해보세요

산출:

 0.0 

실시예 5

 public class CeilExample5 { public static void main(String[] args) { double x = -0.25; // Input less than zero but greater than -1.0, Output negative zero System.out.println(Math.ceil(x)); } } 
지금 테스트해보세요

산출:

 -0.0