RosettaCodeData/Task/Non-decimal-radices-Output/Ruby/non-decimal-radices-output.rb
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

5 lines
132 B
Ruby

for n in 0..33
puts " %6b %3o %2d %2X" % [n, n, n, n]
end
puts
[2,8,10,16,36].each {|i| puts " 100.to_s(#{i}) => #{100.to_s(i)}"}