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. 
  • 引数が正または負の double 値の場合、このメソッドは 天井値
  • 引数が次の場合 NaN 、このメソッドは戻ります 同じ議論
  • 引数が次の場合 無限大 、このメソッドは戻ります 無限大 引数と同じ符号を付けます。
  • 引数が正または負の場合 ゼロ 、このメソッドは戻ります ゼロ 引数と同じ符号を付けます。
  • 引数が 0 より小さく、-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