Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 28, 2018 07:44
Embed
What would you like to do?
num = 72
puts "文字列に変換すると #{num.to_s} です。"
puts "2進数で表すと #{num.to_s(2)} です。"
puts "8進数で表すと #{num.to_s(8)} です。"
puts "16進数で表すと #{num.to_s(16)} です。"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment