logo

Java Math.ceil() metode

The java.lang.Math.ceil () tiek izmantots, lai atrastu mazāko veselo skaitli, kas ir lielāks vai vienāds ar argumentu vai matemātisko veselo skaitli.

Sintakse

 public static double ceil(double x) 

Parametrs

 x= a value 

Atgriezties

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Ja arguments ir pozitīvs vai negatīvs dubultā vērtība, šī metode atgriezīs griestu vērtība .
  • Ja arguments ir NaN , šī metode atgriezīsies tas pats arguments .
  • Ja arguments ir Bezgalība , šī metode atgriezīsies Bezgalība ar tādu pašu zīmi kā arguments.
  • Ja arguments ir pozitīvs vai negatīvs Nulle , šī metode atgriezīsies Nulle ar tādu pašu zīmi kā argumentam.
  • Ja arguments ir mazāks par nulli, bet lielāks par -1,0, šī metode atgriezīsies Negatīvā nulle kā izvade.

1. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 84.0 

2. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 -94.0 

3. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 -Infinity 

4. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 0.0 

5. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 -0.0