1.round(),"四捨五入"(跟普通的四捨五入有區別)(temp = temp+0.5,返回不大於temp的最大整數(向下取整)),能夠理解爲Math.floor(temp+0.5);spa
2.floor(),返回不大於它的最大整數(向下取整(最大的))blog
3.ceil(),返回不小於它的最小整數(向上取整(最小的))im
答案在後面。img