lua round number
local number = 15.57
local number2 = 15.23
print(math.floor(number + 0.5)) --16
print(math.floor(number2 + 0.5)) --15
lua round number
local number = 15.57
local number2 = 15.23
print(math.floor(number + 0.5)) --16
print(math.floor(number2 + 0.5)) --15
lua math floor
> = math.floor(0.5)
0
> = math.ceil(0.5)
1
> = math.floor(-0.5)
-1
> = math.ceil(-0.5)
-0
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us