Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
function dec2base (base, n)
|
||||
local result = ""
|
||||
repeat
|
||||
local digit = n % base
|
||||
if digit > 9 then
|
||||
digit = string.char(digit + 87)
|
||||
end
|
||||
result = digit .. result
|
||||
n = n // base
|
||||
until n == 0
|
||||
return result
|
||||
end
|
||||
|
||||
local x = dec2base(16, 26)
|
||||
print(x) --> 1a
|
||||
print(tonumber(x, 16)) --> 26
|
||||
Loading…
Add table
Add a link
Reference in a new issue