int函数怎么保留两位小数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int函数怎么保留两位小数?相关的知识,希望对你有一定的参考价值。
参考技术A <script language="javascript">function roundFun(numberRound,roundDigit) //四舍五入,保留位数为roundDigit ,供计算时用
if (numberRound>=0)
var tempNumber = parseInt((numberRound * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit);
return tempNumber;
else
numberRound1=-numberRound
var tempNumber = parseInt((numberRound1 * Math.pow(10,roundDigit)+0.5))/Math.pow(10,roundDigit);
return -tempNumber;
</script>
matlab中怎么设置保留小数点后两位?
参考技术A a=[0.1399,0.1599,0.1799];digits(2);vpa(a) 得到:ans = [ 0.14, 0.16, 0.18] 重点在于:digits用于设定显示精度,这里就是小数点后两位。vpa则用于以digits设定的精度来得到数值。可以看出这样做是四舍五入了的。以上是关于int函数怎么保留两位小数?的主要内容,如果未能解决你的问题,请参考以下文章