logo

Metodo Java Math.ceil()

IL java.lang.Math.ceil () viene utilizzato per trovare il valore intero più piccolo maggiore o uguale all'argomento o al numero intero matematico.

Sintassi

 public static double ceil(double x) 

Parametro

 x= a value 

Ritorno

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Se l'argomento ha un valore doppio positivo o negativo, questo metodo restituirà il file valore ceil .
  • Se l'argomento è NaN , questo metodo verrà restituito stesso argomento .
  • Se l'argomento è Infinito , questo metodo verrà restituito Infinito con lo stesso segno dell'argomento.
  • Se l'argomento è positivo o negativo Zero , questo metodo verrà restituito Zero con lo stesso segno dell'argomento.
  • Se l'argomento è inferiore a Zero ma maggiore di -1.0, questo metodo restituirà Zero negativo come produzione.

Esempio 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)); } } 
Provalo adesso

Produzione:

 84.0 

Esempio 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)); } } 
Provalo adesso

Produzione:

 -94.0 

Esempio 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)); } } 
Provalo adesso

Produzione:

 -Infinity 

Esempio 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)); } } 
Provalo adesso

Produzione:

 0.0 

Esempio 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)); } } 
Provalo adesso

Produzione:

 -0.0