java基础面试题:Math.round(11.5)等於多少? Mat…

2018-06-18 03:45:07来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

package com.swift;

public class Math_Round {

    public static void main(String[] args) {
        /*
         * Math round为+0.5后的floor(也可以说正数四舍五入负数五舍六入) ceil天花板 floor地板
         */
        
        System.out.println(Math.round(11.4));
        System.out.println(Math.round(11.5));
        System.out.println(Math.round(11.6));
        System.out.println(Math.round(-11.4));//-11.4+0.5=-10.9 取floor为-11
        System.out.println(Math.round(-11.5));//-11.5+0.5=-11 取floor为-11
        System.out.println(Math.round(-11.6));//-11.6+0.5=-11.1 取floor 为-12
    }

}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java exception 异常错误记录

下一篇:Servlet简单实现请求分发(类thinkphp5)