1.Math.round():根据“round”的字面意思“附近、周围”,可以猜测该函数是求一个附近的整数,看下面几个例子就明白。
小数点后第一位<5
正数:Math.round(11.46)=11
负数:Math.round(-11.46)=-11
小数点后第一位>5
正数:Math.round(11.68)=12
负数:Math.round(-11.68)=-12
小数点后第一位=5
正数:Math.round(11.5)=12
负数:Math.round(-11.5)=-11
总结:(小数点后第一位)大于五全部加,等于五正数加,小于五全不加。
2.Math.ceil():根据“ceil”的字面意思“天花板”去理解;
例如:
Math.ceil(11.46)=Math.ceil(11.68)=Math.ceil(11.5)=12
Math.ceil(-11.46)=Math.ceil(-11.68)=Math.ceil(-11.5)=-11
3.Math.floor():根据“floor”的字面意思“地板”去理解;
例如:
Math.floor(11.46)=Math.floor(11.68)=Math.floor(11.5)=11
Math.floor(-11.46)=Math.floor(-11.68)=Math.floor(-11.5)=-12
IE6 中的最大最小寬度和高度 css 高度 控制(兼容版本)
数学之美 系列一 统计语言模型
数学之美 系列八 贾里尼克的故事和现代语言处理
数学之美 系列二 谈谈中文分词
数学之美系列 4 怎样度量信息?
带线的无限级下拉树列表完整示例篇
实战篇通用的页面列表导出Excel控件
CYQ.Data 轻量数据层之路 V3.0版本发布Xml绝对杀手(三十二)
秋色园Blog 博客系列索引