Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 28, 2018 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mistyrinth/dfb6b511fadb0113364d29618db1d241 to your computer and use it in GitHub Desktop.
Save mistyrinth/dfb6b511fadb0113364d29618db1d241 to your computer and use it in GitHub Desktop.
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