logo

Método Java Math.ceil()

El java.lang.Math.ceil () se utiliza para encontrar el valor entero más pequeño que es mayor o igual al argumento o entero matemático.

Sintaxis

 public static double ceil(double x) 

Parámetro

 x= a value 

Devolver

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Si el argumento es un valor doble positivo o negativo, este método devolverá el valor techo .
  • Si el argumento es Yaya , este método devolverá mismo argumento .
  • Si el argumento es Infinidad , este método devolverá Infinidad con el mismo signo que el argumento.
  • Si el argumento es positivo o negativo. Cero , este método devolverá Cero con el mismo signo que el argumento.
  • Si el argumento es menor que cero pero mayor que -1,0, este método devolverá Cero negativo como producción.

Ejemplo 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)); } } 
Pruébalo ahora

Producción:

 84.0 

Ejemplo 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)); } } 
Pruébalo ahora

Producción:

 -94.0 

Ejemplo 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)); } } 
Pruébalo ahora

Producción:

 -Infinity 

Ejemplo 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)); } } 
Pruébalo ahora

Producción:

 0.0 

Ejemplo 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)); } } 
Pruébalo ahora

Producción:

 -0.0