Math.round方法_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Math.round方法

Math.round方法

 2011/11/22 9:23:20  bingya  http://bingya.iteye.com  我要评论(0)
  • 摘要:java.lang.Math类有两个round()方法,定义如下:publicstaticintround(float);publicstaticlonground(double);它们都返回整数,且采用四舍五入进行运算,运算规则如下:(1).如果参数为正数,小数点后采用四四舍五入,如果小数点后面>=0.5则整数部分加1,否则舍弃小数点后面的数据。(2).如果参数是负数,如果小数点后面的<-0.5,则负数整数部分加上-1.否则舍弃小数点后面的数据。
  • 标签:方法

java.lang.Math类有两个round()方法,定义如下:

public static int round(float);
public static long round(double);

它们都返回整数,且采用四舍五入进行运算,运算规则如下:
(1).如果参数为正数,小数点后采用四四舍五入,如果小数点后面>=0.5则整数部分加1,否则舍弃小数点后面的数据。
(2).如果参数是负数,如果小数点后面的<-0.5,则负数整数部分加上-1.否则舍弃小数点后面的数据。

发表评论
用户名: 匿名