Math类

作者: 指尖流逝的青春 | 来源:发表于2018-02-26 11:32 被阅读0次
  • double d1 = 3.14;

  • double d2 = 3.49;

  • double d3 = 3.5;

  • double d4 = 3.51;

  • double d5 = -3.14;

  • double d6 = -3.49;

  • double d7 = -3.5;

  • double d8 = -3.51;

  • com.orhanobut.logger.Logger.e(Math.round(d1) + "");//3
    com.orhanobut.logger.Logger.e(Math.round(d2) + "");//3
    com.orhanobut.logger.Logger.e(Math.round(d3) + "");//4
    com.orhanobut.logger.Logger.e(Math.round(d4) + "");//4

  • com.orhanobut.logger.Logger.e(Math.round(d5) + "");//-3
    com.orhanobut.logger.Logger.e(Math.round(d6) + "");//-3
    com.orhanobut.logger.Logger.e(Math.round(d7) + "");//-3
    com.orhanobut.logger.Logger.e(Math.round(d8) + "");//-4

  • 总结:


    图片.png

相关文章

网友评论

      本文标题:Math类

      本文链接:https://www.haomeiwen.com/subject/wkiexftx.html