The problem
The formula for converting celsius temperature to fahrenheit is °C x 9/5 + 32 = °F
. Write a program that displays temps up to 100 degrees fahrenheit.
Breaking it down
create a method that convert fahrenheit to celsius
Create a loop from 0 to 100
Output
Unit tests
Level Up
- ask user to input temp in fahrenheit and display celsius
- tidy up formatting 1) format celsius output 2) look at the column header