Math.round(11.5)等于多少? Math.round(-11.5)等于多少?

round()方法可以这样理解:

将括号内的数+0.5之后,向下取值,

比如:round(3.4)就是3.4+0.5=3.9,向下取值是3,所以round(3.4)=3;

round(-10.5)就是-10.5+0.5=-10,向下取值就是-10,所以round(-10.5)=-10

所以,Math.round(11.5)=12;

所以,Math.round(-11.5)=-11;

猜你喜欢

转载自blog.csdn.net/qq_41033290/article/details/85156771