Solve problem in Alice 2.4.3 Fahrenheit to Celsius The following formula is used
ID: 3923256 • Letter: S
Question
Solve problem in Alice 2.4.3 Fahrenheit to Celsius The following formula is used to convert a Fahrenheit temperature to a Celsius temperature: C = (5 / 9) * (F - 32) In the formula, C is the Celsius temperature and F is the Fahrenheit temperature. Create a world in which the user is asked to enter a Fahrenheit temperature. Use a math expression to convert the temperature to Celsius, and store the converted temperature in a variable. Use a character from the People collection to say the Celsius temperature.
Explanation / Answer
#include <stdio.h>
int main()
{
float C,F;
printf("enter a Fahrenheit temperature: ");
scanf("%f",&F);
C=(float)((5.0/9.0)*(F-32));
printf("Celsius temperature for given Fahrenheit temperature is %f ",C);
return 0;
}
example:
enter a Fahrenheit temperature: 102
Celsius temperature for given Fahrenheit temperature is 38.888889.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.