logo

Java Math.ceil() -menetelmä

The java.lang.Math.ceil () käytetään etsimään pienin kokonaislukuarvo, joka on suurempi tai yhtä suuri kuin argumentti tai matemaattinen kokonaisluku.

Syntaksi

 public static double ceil(double x) 

Parametri

 x= a value 

Palata

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Jos argumentti on positiivinen tai negatiivinen kaksoisarvo, tämä menetelmä palauttaa enimmäisarvo .
  • Jos argumentti on NaN , tämä menetelmä palaa sama argumentti .
  • Jos argumentti on ääretön , tämä menetelmä palaa ääretön samalla merkillä kuin argumentti.
  • Jos argumentti on positiivinen tai negatiivinen Nolla , tämä menetelmä palaa Nolla samalla merkillä kuin argumentti.
  • Jos argumentti on pienempi kuin nolla mutta suurempi kuin -1,0, tämä menetelmä palauttaa Negatiivinen nolla as ulostulo.

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 84.0 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 -94.0 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 -Infinity 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 0.0 

Esimerkki 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)); } } 
Testaa nyt

Lähtö:

 -0.0