我进行除法运算,算出来的小数位太多了,如何保留2位啊?
function get2(n)
local a,b = math.modf(n)
b = math.floor(b*100)/100
return a+b
end
如果觉得我的回答对您有用,请随意打赏。你的支持将鼓励我继续创作!