Question: PROBLEM C: Convert a Fahrenheit value to Celsius (From F to C) and display the converted value . Pseudocode: Define a variable representing Celius, name
PROBLEM C: Convert a Fahrenheit value to Celsius (From F to C) and display the converted value .
Pseudocode:
Define a variable representing Celius, name it c, and assign c a numerical value of 0.0
Define a variable representing Fahrenheit, name it f, and assign f a numerical value of 50.9
Use the formula c = (f - 32) * (5 / 9) to convert Fahrenheit (f) to Celsius (c).
Display the temperature in Celsius
Note: Problem C should not have a for statement nor an if statement.
(Please use Jupyter notebook to solve these problem)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
