CJCoding With Joseph

Fahrenheit to Celsius

Write a function double toCelsius(double f) that converts a Fahrenheit temperature to Celsius using (f - 32) * 5 / 9. Call it with toCelsius(98.6) and print the result with exactly 1 decimal place:

37.0

Use <iomanip> fixed and setprecision(1).

Expected Output:

37.0
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.