logo

Java Math.ceil() метод

The java.lang.Math.ceil () се използва за намиране на най-малкото цяло число, което е по-голямо или равно на аргумента или математическото цяло число.

Синтаксис

 public static double ceil(double x) 

Параметър

 x= a value 

Връщане

 This method returns smallest floating-point value that is greater than or equal to the argument and is equal to a mathematical integer. 
  • Ако аргументът е положителна или отрицателна двойна стойност, този метод ще върне ceil стойност .
  • Ако аргументът е NaN , този метод ще се върне същия аргумент .
  • Ако аргументът е безкрайност , този метод ще се върне безкрайност със същия знак като аргумента.
  • Ако аргументът е положителен или отрицателен Нула , този метод ще се върне Нула със същия знак като аргумента.
  • Ако аргументът е по-малък от нула, но по-голям от -1,0, този метод ще върне Отрицателна нула като изход.

Пример 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)); } } 
Тествайте сега

Изход:

 84.0 

Пример 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)); } } 
Тествайте сега

Изход:

 -94.0 

Пример 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)); } } 
Тествайте сега

Изход:

 -Infinity 

Пример 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)); } } 
Тествайте сега

Изход:

 0.0 

Пример 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)); } } 
Тествайте сега

Изход:

 -0.0