Lua의 몇 가지 계산 공식
1664 단어 개인 노트
--Lua- ( )
function Round(num, i)
local mult = 10^(i or 0)
local mult10 = mult * 10
return math.floor((num * mult10 + 5)/10)/ mult
end
--Lua- ( )
function Round2(num, i)
local tmp = math.abs(num)*(10^(i+1))
local cal = math.abs(num)*(10^(i+1))/(10^(i+1))
local result = 0
if(math.floor(tmp)-math.floor(tmp/10)*10==5) then
if(tmp-math.floor(tmp)==0) then
local numInt1,numInt2 = math.modf(math.floor(tmp/10))
if(numInt1 % 2 == 0) then
result = math.floor(tmp/10)/(10^i)
end
end
end
if(result==0) then
result = math.floor((cal * ((10^(i or 0)) * 10) + 5)/10)/ (10^(i or 0))
end
return ( num>0 and result ) or (0-result)
end
-- , null
function Multiply(num1,num2)
if(num1==nil) then
return 0
end
if(num2==nil) then
return 0
end
local temp=tostring(num1*num2)
temp=tonumber(temp)
return temp
end
--
function Divide(denominator,numerator)
if(numerator==nil) then
return 0
end
if(denominator==nil) then
return 0
end
if(numerator==0) then
return 0
end
return denominator/numerator
end
--
function Ceil(num)
if(num==nil) then
return 0
end
if (num <= 0) then
return math.ceil(num)
end
if (math.ceil(num) == num) then
return math.ceil(num)
else
return math.ceil(num) - 1
end
end
--
function Ceil2(num)
if(num==nil) then
return 0
end
local t1,t2 = math.modf(num)
return t1
end
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Lua의 몇 가지 계산 공식텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.