这篇教程Java round() 方法写得很实用,希望能帮到您。 round() 方法返回一个最接近的int、long型值。 语法该方法有以下几种语法格式: long round(double d)int round(float f) 参数返回值返回一个最接近的int、long型值,方法会指定返回的数据类型。 实例 实例 public class Test{ 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)); }} 编译以上程序,输出结果为: 10110110090 Java rint() 方法 Java min() 方法 |