touch up yo

This commit is contained in:
Armen Vartan
2014-12-02 15:07:19 -05:00
parent c674ce998d
commit 45d3de2efe
8 changed files with 12 additions and 46 deletions

View File

@ -1,17 +1,14 @@
Temperature Converters
======================
###Fahrenheit to Celsius
Write a function that converts fahrenheit temperatures to celsius. The equation to do this is:
#### Fahrenheit to Celsius
Write a function that converts fahrenheit temperatures to celsius. The equation to do this is ```C = (F - 32) * 5/9```.
C = (F - 32) * 5/9
#### Celsius to Fahrenheit
###Celsius to Fahrenheit
Write a similar function that converts celsius to fahrenheit.
The equation for this is ```F = (C * 9/5) + 32```.
Write a similar function that converts celsius to fahrenheit. The equation:
#### Testing
F = (C * 9/5) + 32
###Testing
Make sure the tests pass. Write 3 of your own tests.
Make sure the tests pass. Write 3 of your own tests.