Last active
August 29, 2015 14:22
-
-
Save halgatewood/1552d6fbb1ae673c3264 to your computer and use it in GitHub Desktop.
Convert Celsius to Fahrenheit and vice versa.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // CONVERSIONS | |
| function hg_c_to_f( $c ) | |
| { | |
| return round( ( $c * 1.8 ) + 32); | |
| } | |
| function hg_f_to_c( $f ) | |
| { | |
| return round(($f- 32) / 1.8); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment