package cn.mldn.demo; public class TestDemo { public static void main(String[] args) throws Exception { System.out.println(Math.round(15.5)); // 16 System.out.println(Math.round(15.6)); // 16 System.out.println(Math.round(15.2356)); // 15 System.out.println(Math.round(-15.5)); // -15 不是应该是-16吗?为什么不是-16 } } |