java基础之Math类

Math类的几个基本方法

1.Math.abs(-5);  //值为5  绝对值

2.Math.ceil(5.1); //值为6.0   向上取整

   Math.ceil(-3.3); //值为 -3 .0

2.Math.floor(3.6); //值为3 .0  向下取整

   Math.floor(-3.6);//值为-4.0

3.Math.round(4.6);//值为5    相当于四舍五入

   Math.round(4.4);//值为4

上一篇:Mysql 常用函数(21)- floor 函数


下一篇:python基础知识