在java开发当中会经常使用小数点计算的问题,这是需要知道java中向上向下取整,如下:向上取整用Math.ceil(double a)向下取整用Math.floor(double a)举例:public static void main(String[] args) throws Exception {double a = 35;double b = 20;double c = a / b;System.out.println( + c); // 1.75System.out.println( + Math.ceil(c)); // 2.0System.out.println(Math.floor(c)); // 1.0}
|
|