Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The formula for converting temperature from Fahrenheit to Celsius is C = 5/9 * (

ID: 3684300 • Letter: T

Question

The formula for converting temperature from Fahrenheit to Celsius is   C = 5/9 * (F – 32). Write a function Celsius that accepts a Fahrenheit temperature as an argument and returns the temperature in Celsius.

The formula for converting temperature from Fahrenheit to Celsius is   C = 5/9 * (F – 32). Write a function Celsius that accepts a Fahrenheit temperature as an argument and returns the temperature in Celsius.

Explanation / Answer

#include #include using namespace std; int main() { float C, F; cout > F; //formula to calculate temperature in celsius using temperature in fahrenheit C = (5/9)*(F-32); //display temperature in celsius cout