Skip to content

Instantly share code, notes, and snippets.

@SyunWatanabe
Last active February 15, 2020 07:47
Show Gist options
  • Select an option

  • Save SyunWatanabe/d94c4f001b4be6825531872a34fd6e7c to your computer and use it in GitHub Desktop.

Select an option

Save SyunWatanabe/d94c4f001b4be6825531872a34fd6e7c to your computer and use it in GitHub Desktop.
# 長さの単位変換プログラム
def convert_length(num, unit, conversion)
hash = {'m' => 1.00, 'ft' => 3.28, 'in' => 39.37}
(num * hash[conversion] / hash[unit]).round(2)
end
puts convert_length(1, 'm', 'in')
puts convert_length(15, 'in', 'm')
puts convert_length(35_000, 'ft', 'm')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment