Question: Instructions temperature conversion write a program that displays a table of Fahrenheit / Celsius temperatures, based on the user input of a temperature range (

Instructions
temperature conversion
write a program that displays a table of Fahrenheit/Celsius temperatures, based on the user input of a temperature range (beginning and ending temperature) with the output Fahrenheit/Celsius equivalent. The formula for converting is:
to convert Celsius to Fahrenheit > F =(9/5C)+32
to convert Fahrenheit to Celsisu > C =(F -32)*(5/9)
where F is the Fahrenheit temperature, and C is the Celsius temperature.
the program must include the following:
1. utilize an outside loop to keep the program running until told to stop by the user
2. ask is input Celsius or Fahrenheit
2. an inside loop to calculate and display the table
3. the temperature range input should allow for negative temperatures
4. the output table should look something like the example below
Celsius Fahrenheit
032
133.8
235.6
337.4
refer to python program grading rubric for coding requirements

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!