logo

Mètode Java Math.ceil().

El java.lang.Math.ceil () s'utilitza per trobar el valor enter més petit que és més gran o igual que l'argument o el nombre enter matemàtic.

Sintaxi

 public static double ceil(double x) 

Paràmetre

 x= a value 

Tornar

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Si l'argument és un valor doble positiu o negatiu, aquest mètode retornarà valor sostre .
  • Si l'argument és NaN , aquest mètode tornarà mateix argument .
  • Si l'argument és Infinit , aquest mètode tornarà Infinit amb el mateix signe que l'argument.
  • Si l'argument és positiu o negatiu Zero , aquest mètode tornarà Zero amb el mateix signe que l'argument.
  • Si l'argument és menor que zero però superior a -1,0, aquest mètode tornarà Zero negatiu com sortida.

Exemple 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)); } } 
Prova-ho ara

Sortida:

 84.0 

Exemple 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)); } } 
Prova-ho ara

Sortida:

 -94.0 

Exemple 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)); } } 
Prova-ho ara

Sortida:

 -Infinity 

Exemple 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)); } } 
Prova-ho ara

Sortida:

 0.0 

Exemple 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)); } } 
Prova-ho ara

Sortida:

 -0.0