Guest User

Untitled

a guest
Nov 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class Converter
  2.  
  3. def celsius(c)
  4. f = (c * 9/5) + 32
  5. end
  6.  
  7. def farenheit(f)
  8. c = (f - 32) * 5/9
  9. end
  10.  
  11.  
  12.  
  13. end
Add Comment
Please, Sign In to add comment