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