java中的向上取整和向下取整

向上取整:比自己大的最小整数。
向下取整:比自己小的最大整数。

public class RoundingUp {
    public static void main(String[] args) {
        System.out.println(Math.ceil(1.5)); //2.0
        System.out.println(Math.ceil(-1.5)); //-1.0
        System.out.println(Math.floor(1.5)); //1.0
        System.out.println(Math.floor(-1.5)); //-2.0
    }
}
posted @ 2020-03-14 10:28  爱做梦的子浩  阅读(1473)  评论(0编辑  收藏  举报