当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

Math的floor,round和ceil的总结[Java编程]

赞助商链接



  本文“Math的floor,round和ceil的总结[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

floor 返回不大于的最大整数

found 则是4舍5入的计算,入的时刻是到大于它的整数

ceil 则是不小于他的最小整数

看例子

  Math.floor Math.round Math.ceil
1.4 1 1 2
1.5 1 2 2
1.6 1 2 2
-1.4 -2 -1 -1
-1.5 -2 -1 -1
-1.6 -2 -2 -1

测试程序以下:

public class MyTest {
 public static void main(String[] args) {
  double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 };
  for (double num : nums) {
   test(num);
  }
 }
 private static void test(double num) {
  System.out.println("Math.floor(" + num + ")=" + Math.floor(num));
  System.out.println("Math.round(" + num + ")=" + Math.round(num));
  System.out.println("Math.ceil(" + num + ")=" + Math.ceil(num));
 }
}

运行后果

Math.floor(1.4)=1.0
Math.round(1.4)=1
Math.ceil(1.4)=2.0
Math.floor(1.5)=1.0
Math.round(1.5)=2
Math.ceil(1.5)=2.0
Math.floor(1.6)=1.0
Math.round(1.6)=2
Math.ceil(1.6)=2.0
Math.floor(-1.4)=-2.0
Math.round(-1.4)=-1
Math.ceil(-1.4)=-1.0
Math.floor(-1.5)=-2.0
Math.round(-1.5)=-1
Math.ceil(-1.5)=-1.0
Math.floor(-1.6)=-2.0
Math.round(-1.6)=-2
Math.ceil(-1.6)=-1.0


  以上是“Math的floor,round和ceil的总结[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • Jakarta-Common-Math操纵笔记
  • Math的floor,round和ceil的总结
  • <b>J2ME中定点库MathFP操纵入门</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .