A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

Math.round(11.5) 等于多少?Math.round(-11.5)等于多少?

3 个回复

倒序浏览
本帖最后由 ancheng 于 2016-6-12 21:03 编辑

12和-11 四舍五入
回复 使用道具 举报
ancheng 发表于 2016-6-12 19:55
12和-11 四舍五入

回复 使用道具 举报
本帖最后由 TCK8888 于 2016-6-13 19:39 编辑

楼上说的有点问题,看API文档发现,Math类的round的方法,有两个
  1. public static int round(float a)
  2. public static long round(double a)
复制代码

分别返回值为int 与long类型,返回最接近参数,结果为12和-11
都加上0.5f或者0.5d
回复 使用道具 举报 1 0
您需要登录后才可以回帖 登录 | 加入黑马