码迷,mamicode.com
首页 > 其他好文 > 详细

Lua保留指定小数位数

时间:2018-05-11 23:18:47      阅读:428      评论:0      收藏:0      [点我收藏+]

标签:local   数字   .com   span   tps   www.   pre   数位   sed   

默认会四舍五入

  • 比如:%0.2f 会四舍五入后,保留小数点后2位

Lua保留一位小数

--- nNum 源数字
--- n 小数位数
function Tool. GetPreciseDecimal(nNum, n)
    if type(nNum) ~= "number" then
        return nNum;
    end
    n = n or 0;
    n = math.floor(n)
    if n < 0 then
        n = 0;
    end
    local nDecimal = 10 ^ n
    local nTemp = math.floor(nNum * nDecimal);
    local nRet = nTemp / nDecimal;
    return nRet;
end

参考:https://www.cnblogs.com/pk-run/p/4444582.html

Lua保留指定小数位数

标签:local   数字   .com   span   tps   www.   pre   数位   sed   

原文地址:https://www.cnblogs.com/zhaoqingqing/p/9026523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!