java里Double转int

向上取整

System.out.println((int) Math.ceil(66.1));

结果

  67

向下取整

System.out.println((int) Math.floor(66.6));

结果

  66

四舍五入

System.out.println(Math.round(66.1));

结果

  66

System.out.println(Math.round(66.6));

结果

  67

posted @ 2020-04-02 18:05  慕尘  阅读(1451)  评论(0编辑  收藏  举报