logo

שיטת Java Math.ceil()

ה 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. 
  • אם הארגומנט הוא ערך כפול חיובי או שלילי, שיטה זו תחזיר את ערך תקרה .
  • אם הטיעון הוא 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