Lua Round Number

[Solved] Lua Round Number | Lua - Code Explorer | yomemimo.com
Question : lua round number

Answered by : pplew

local number = 15.57
local number2 = 15.23
print(math.floor(number + 0.5)) --16
print(math.floor(number2 + 0.5)) --15

Source : | Last Update : Fri, 11 Dec 20

Question : round to the nearest number lua

Answered by : thankful-termite-6qcg3hh8t2hl

--You can round answers to the nearest multiple of a number
--For example, rounding 13 to the nearest multiple of 3 is 12, since 12 is
--divisible by 3
local number = 15.2
local multiple = 3 --the multiple you choose
print(math.floor(number/multiple+0.5)*multiple --Add 0.5
--Or just round to the nearest whole number
print(math.floor(number + 0.5))

Source : | Last Update : Tue, 20 Apr 21

Answers related to lua round number

Code Explorer Popular Question For Lua