数値の小数点以下を切上げるには、Math.ceilを使用します。
構文
- (java.lang.Math)
- public static double ceil(double a)
サンプルソース
例)3.141592の小数点以下を切り上げる
1 |
double result = Math.ceil(3.141592); |
- (結果)
- 4.0
メモ
- 関連項目は以下をご覧ください。
⇒ 数値の小数点以下を四捨五入する(Math.round)
⇒ 数値の小数点以下を切捨てる(Math.floor)