logo

Metoda Java Math.ceil().

The java.lang.Math.ceil () se uporablja za iskanje najmanjše vrednosti celega števila, ki je večja ali enaka argumentu ali matematičnemu celemu številu.

Sintaksa

 public static double ceil(double x) 

Parameter

 x= a value 

Vrnitev

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Če je argument pozitivna ali negativna dvojna vrednost, bo ta metoda vrnila ceil vrednost .
  • Če je argument NaN , se bo ta metoda vrnila isti argument .
  • Če je argument neskončnost , se bo ta metoda vrnila neskončnost z enakim predznakom kot argument.
  • Če je argument pozitiven ali negativen Nič , se bo ta metoda vrnila Nič z enakim znakom kot argument.
  • Če je argument manjši od nič, vendar večji od -1,0, bo ta metoda vrnila vrednost Negativna ničla kot izhod.

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 84.0 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 -94.0 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 -Infinity 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 0.0 

Primer 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)); } } 
Preizkusite zdaj

Izhod:

 -0.0