Created
September 10, 2010 11:13
-
-
Save dominictarr/573462 to your computer and use it in GitHub Desktop.
calculate times table in base 12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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