Question
3) [9 points] You've been hired by Heat Hunters to write a C++ console application that calculates and displays the Celsius equivalent of a Fahrenheit
3) [9 points] You've been hired by Heat Hunters to write a C++ console application that calculates and displays the Celsius equivalent of a Fahrenheit temperature. Prompt the user for a temperature in Fahrenheit, convert it to Celsius and show both values. See https://www.albireo.ch/temperatureconverter/formula.html for background information. Use formatted output manipulators (setw, left/right) to print the following two rows:
Fahrenheit temperature
Celsius temperature
And three columns:
A left-justified label.
A right-justified value.
A left-justified units (output manipulators not needed here, but don't place one space before the units name to separate it from the second column).
Define constants for the column widths. Format all real numbers to two decimal places. Include the degree symbol in the output:
Windows users declare a constant for the degree symbol:
DEGREE_SYMBOL = (char) 167
Use the constant in the output.
Mac OS users copy the degree symbol above to your code.
Run the program five times with the following Fahrenheit values. What are the results?
Run | Fahrenheit | Celsius |
1 | 212 |
|
2 | 67 |
|
3 | 32 |
|
4 | 0 |
|
5 | -40 |
|
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started