logo

Metoda Java Math.ceil().

The java.lang.Math.ceil () służy do znalezienia najmniejszej wartości całkowitej, która jest większa lub równa argumentowi lub matematycznej liczbie całkowitej.

Składnia

 public static double ceil(double x) 

Parametr

 x= a value 

Powrót

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Jeśli argument ma podwójną wartość dodatnią lub ujemną, ta metoda zwróci wartość sufitu .
  • Jeśli argumentem jest NaN , ta metoda powróci ten sam argument .
  • Jeśli argumentem jest Nieskończoność , ta metoda powróci Nieskończoność z tym samym znakiem co argument.
  • Jeśli argument jest pozytywny lub negatywny Zero , ta metoda powróci Zero z tym samym znakiem co argument.
  • Jeśli argument jest mniejszy niż zero, ale większy niż -1,0, ta metoda zwróci Ujemne zero jako wyjście.

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 84.0 

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 -94.0 

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 -Infinity 

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 0.0 

Przykład 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)); } } 
Przetestuj teraz

Wyjście:

 -0.0