2021
10-12
10-12
Java Math类的三个方法ceil,floor,round用法
Math类的ceil,floor,round用法ceil()方法就表示向上取整,Math.ceil(12.3)的结果是13,Math.ceil(-12.7)的结果-12;floor()方法就表示向下取整,Math.floor(12.7)的结果是12,Math.floor(-12.3)的结果-13;round()方法表示“四舍五入”,Math.round(12.3)的结果是12,Math.round(-12.7)的结果-13;Math的floor,round和ceil总结floor返回不大于的最大整数round则是4舍5入的计算,入的时候是到大于它的整数round方法,它表示“四...
继续阅读 >