用脚本js把结果转化为固定小数位的形式

function roundTo(base,precision)
{
var m=Math.pow(10,precision);
var a=Math.round(base * m) / m;
return a;
}

例如:给定数字n=6.3241712,则用roundTo(n,0)得4,用roundTo(n,7)得到6.3241712

上一篇:Java设计模式の迭代器模式


下一篇:Cracking The Coding Interview 4.6