โ Back to Functions
Question 394
Fahrenheit to Celsius
Fahrenheit to Celsius
Write a functiondouble toCelsius(double f)that converts a Fahrenheit temperature to Celsius using(f - 32) * 5 / 9. Call it withtoCelsius(98.6)and print the result with exactly 1 decimal place: 37.0 Use<iomanip>fixedandsetprecision(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.