题解 | #数字取整#
数字取整
http://www.nowcoder.com/practice/1e45f1d1e1674e79807f82743f8b8f0a
function _int(value) {
// 补全代码 floor:向下取整
return Math.floor(value)
}
数字取整
http://www.nowcoder.com/practice/1e45f1d1e1674e79807f82743f8b8f0a
function _int(value) {
// 补全代码 floor:向下取整
return Math.floor(value)
}
相关推荐