Skip to content

Instantly share code, notes, and snippets.

@dominictarr
Created September 10, 2010 11:13
Show Gist options
  • Save dominictarr/573462 to your computer and use it in GitHub Desktop.
Save dominictarr/573462 to your computer and use it in GitHub Desktop.
calculate times table in base 12
begin
base = ARGV.length > 0 ? ARGV[0].to_i : 12
rescue
puts "usuage:
ruby #{__FILE__} {number}
(number = 12 by default)"
end
puts "times table in base #{base}:"
(base + 1).times {|x|
(base + 1).times {|y|
#print "#{(x*y).to_s(base)} "
printf "%3s ",(x*y).to_s(base)
}
print "\n"
}
nil
@jeanblackburn
Copy link

The code you provided is a great example of exploring mathematical concepts using a different number base—base 12 in this case. By calculating and displaying the times table in base 12, it demonstrates how versatile and fun working with alternative numeral systems can be.
snap best friends list planets

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment