Skip to content

Instantly share code, notes, and snippets.

@harrisonmalone
Last active September 24, 2018 06:50
Show Gist options
  • Save harrisonmalone/ffa6684128c1bf6cd0f38d24cb16210e to your computer and use it in GitHub Desktop.
Save harrisonmalone/ffa6684128c1bf6cd0f38d24cb16210e to your computer and use it in GitHub Desktop.
def c_to_f
puts "enter the celcius you'd like to convert"
c = gets.chomp.to_i
result = c * (9 / 5.0) + 32
return result
end
p c_to_f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment