logo

Metoda Java Math.ceil().

The java.lang.Math.ceil () se používá k nalezení nejmenší celočíselné hodnoty, která je větší nebo rovna argumentu nebo matematickému celému číslu.

Syntax

 public static double ceil(double x) 

Parametr

 x= a value 

Vrátit se

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Pokud je argument kladná nebo záporná dvojitá hodnota, tato metoda vrátí hodnotu hodnota stropu .
  • Pokud je argument NaN , tato metoda se vrátí stejný argument .
  • Pokud je argument Nekonečno , tato metoda se vrátí Nekonečno se stejným znaménkem jako argument.
  • Jestli je argument kladný nebo záporný Nula , tato metoda se vrátí Nula se stejným znaménkem jako argument.
  • Pokud je argument menší než nula, ale větší než -1,0, vrátí se tato metoda Negativní nula jako výstup.

Příklad 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)); } } 
Otestujte to hned

Výstup:

 84.0 

Příklad 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)); } } 
Otestujte to hned

Výstup:

 -94.0 

Příklad 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)); } } 
Otestujte to hned

Výstup:

 -Infinity 

Příklad 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)); } } 
Otestujte to hned

Výstup:

 0.0 

Příklad 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)); } } 
Otestujte to hned

Výstup:

 -0.0