扫码一下
查看教程更方便
round() 方法返回一个最接近的 int、long 型值,四舍五入。
long round(double d)
int round(float f)
此方法返回与参数最接近的 long 或 int,如方法的返回类型所示。
public class Main { public static void main(String args[]) { double d = 100.675; double e = 100.500; float f = 100; float g = 90f; System.out.println(Math.round(d)); System.out.println(Math.round(e)); System.out.println(Math.round(f)); System.out.println(Math.round(g)); } }
上面示例编译运行结果如下
101
101
100
90