Math.round(11.5)等于()Math.round(-11.5)等于()

几天前去面试,这道简单的题目竟然做错了,看来基础就是慢慢积累的,并不断使用和复习才会成为高手,如果基础不是那么熟练,恐怕在成为高手的路上会困难重重,所以在做项目的间歇时间,偶尔回忆一下最基础的知识,是一个比较好的投资。

好了,下面介绍的就是Math类中三个与取整有关的方法 :

1、Math.round();//四舍五入

2、Math.ceil();//向上取整

3、Math.floor();//向下取整

代码展示:

public class TextOne {
	public static void main(String[] args) {
		/**
		 * 四舍五入取整
		 */
		System.out.println(Math.round(11.5));
		System.out.println(Math.round(-11.5));
		
		/**
		 *向上取整 
		 */
		System.out.println(Math.ceil(11.5));
		System.out.println(Math.ceil(-11.5));
		
		/**
		 * 向下取整
		 */
		System.out.println(Math.floor(11.5));
		System.out.println(Math.floor(-11.5));
		
	}
}

运行结果:

12
-11
12.0
-11.0
11.0
-12.0





 

你可能感兴趣的:(Java,基础)