首页 > 编程语言 > 详细

java中的Math.ceil、Math.floor和Math.round

时间:2019-09-28 15:29:30      阅读:85      评论:0      收藏:0      [点我收藏+]

ceil意为天花板,指向上取整;floor意为地板,指向下取整;round指四舍五入

package com.company;

public class Main {

    public static void main(String[] args) {
        //向上取整
        System.out.println(Math.ceil(11.3));//12.0
        System.out.println(Math.ceil(-11.3));//-11.0

        //向下取整
        System.out.println(Math.floor(11.3));//11.0
        System.out.println(Math.floor(-11.3));//-12.0

        //四舍五入 算法为Math.floor(x+0.5) 即原来的数字加上0.5再向下取整
        System.out.println(Math.round(11.4));//11
        System.out.println(Math.round(11.5));//12
        System.out.println(Math.round(11.6));//12
        System.out.println(Math.round(-11.4));//-11
        System.out.println(Math.round(-11.5));//-11
        System.out.println(Math.round(-11.6));//-12
    }
}

 

java中的Math.ceil、Math.floor和Math.round

原文:https://www.cnblogs.com/yanguobin/p/11603214.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!