說明:
使用正數求整數:
Math.floor():小數一律不要
Math.ceil():小數一律進位
使用負數求整數:
Math.floor():小數一律進位
Math.ceil():小數一律不要:
程式:
<script type="text/javascript">
var a1 = 15.56;
var a2 =-1.15;
document.write("a1為正數:"+a1+"<br>");
document.write("floor取整數為:"+Math.floor(a1)+"<br>");
document.write("ceil取整數為:"+Math.ceil(a1)+"<br>");
document.write("a2為負數:"+a2+"<br>");
document.write("floor取整數為:"+Math.floor(a2)+"<br>");
document.write("ceil取整數為:"+Math.ceil(a2)+"<br>");
</script>
結果:
圖:
其它文章
沒有留言:
張貼留言