Now that we’ve learned about the basics of variables and cin
, let’s write a program!
The mad scientist Kelvin has mastered predicting the weather in his mountain-side meteorology lab.
Recently, Kelvin began publishing his weather forecasts on his website, however, there’s a problem: All of his forecasts describe the temperature in Fahrenheit degrees.
Let’s convert a temperature from Fahrenheit (F) to Celsius (C).
The formula is the following:
Instructions
First, google the current temperature of New York in Fahrenheit.
Declare a double
variable named tempf
and initialize it with the temperature.
Declare another double
variable named tempc
.
Calculate the temperature to Celsius.
Store it in tempc
.
Display the result.
Output exactly this:
The temp is [tempc] degrees Celsius.
Don’t forget to add a \n
.
Compile the program using the terminal.
Now execute the output file using the terminal.