首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Math.round步骤

2012-09-19 
Math.round方法java.lang.Math类有两个round()方法,定义如下:public static int round(float)public stat

Math.round方法

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

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

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

热点排行