O java.lang.Math.ceil() é usado para encontrar o menor valor inteiro maior ou igual ao argumento ou número inteiro matemático.
Sintaxe
public static double ceil(double x)
Parâmetro
x= a value
Retornar
This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer.
- Se o argumento for um valor duplo positivo ou negativo, este método retornará o valor do teto .
- Se o argumento for NaN , este método retornará mesmo argumento .
- Se o argumento for Infinidade , este método retornará Infinidade com o mesmo sinal do argumento.
- Se o argumento for positivo ou negativo Zero , este método retornará Zero com o mesmo sinal do argumento.
- Se o argumento for menor que Zero, mas maior que -1,0, este método retornará Zero negativo como saída.
Exemplo 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)); } }Teste agora
Saída:
84.0
Exemplo 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)); } }Teste agora
Saída:
-94.0
Exemplo 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)); } }Teste agora
Saída:
-Infinity
Exemplo 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)); } }Teste agora
Saída:
0.0
Exemplo 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)); } }Teste agora
Saída:
-0.0