js 除法进一位

来源:互联网 发布:大尺度 豆瓣 知乎 编辑:程序博客网 时间:2024/03/29 04:16
<script>
var a=10,b=3
alert(Math.ceil(a/b));
</script>
0 0