Advertisement
Oysi

Untitled

Oct 5th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. -- Example 1
  2. for a = 1, 3 do
  3.     for b = 1, 3 do
  4.         for c = 1, 3 do
  5.             for d = 1, 3 do
  6.                 print(a .. b .. c .. d)
  7.             end
  8.         end
  9.     end
  10. end
  11.  
  12. -- Example 2
  13. local function f(i)
  14.     local str = ""
  15.     for j = 1, 4 do
  16.         local n = math.floor(i/3^(4 - j)%3) + 1
  17.         str = str .. n
  18.     end
  19.     return str
  20. end
  21.  
  22. for i = 0, 3^4 - 1 do
  23.     print(i, f(i))
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement