Question

seqeuntial solution to a faharenhiet tempreture to celsius (hint celsius=5/9( faharenhiet=32)

seqeuntial solution to a faharenhiet tempreture to celsius (hint celsius=5/9( faharenhiet=32)

Homework Answers

Answer #1

Covert Faharenhiet to celsius:

Formula:

C= (F-32)*5/9

where C is temperature in celsius

and F is temperature in faharenhiet

Let's understand with an example: Convert 98.6 (normal human body temperature) to celsius:

C= (F-32)*5/9

C= (98.6-32)*5/9

C= 66.6*5/9

C= 333/9

C= 37 degree celsius

Program to convert Faaharenhiet to celsius:

#include <stdio.h>

int main()
{
    float celsius, fahrenheit;

    /* Input temperature in fahrenheit */
    printf("Enter temperature in Fahrenheit: ");
    scanf("%f", &fahrenheit);

    /* Fahrenheit to celsius conversion formula */
    celsius = (fahrenheit - 32) * 5 / 9;

    /* Print the value of celsius */
    printf("%.2f Fahrenheit = %.2f Celsius", fahrenheit, celsius);

    return 0;
}

Output:

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Program must be in JAVA. Write a program that converts temperature from Celsius to Fahrenheit or...
Program must be in JAVA. Write a program that converts temperature from Celsius to Fahrenheit or vice versa, depending on user's input. The formula for converting temperature in Celsius to Fahrenheit is, Fahrenheit = (9/5) * Celsius + 32 The formula for converting temperature in Fahrenheit to Celsius is, Celsius = (5/9) * (Fahrenheit – 32) Results should be rounded to two decimal points, e.g., 92.56
A 9 kilogram block of ice is to be heated from -36 Celsius to 140 Celsius....
A 9 kilogram block of ice is to be heated from -36 Celsius to 140 Celsius. How much energy is required to heat the ice from -36 to 0 Celsius? How much energy is required to change the 0 Celsius ice into 0 Celsius water? How much energy is required to heat the water from 0 Celsius to 100 Celsius? How much energy is required to change the 100 Celsius water into 100 Celsius steam? How much energy is required...
Why was acetone used in the (alcohol oxidation reaction: 9 flourenone) reaction? hint: sodium hypochlorite solution...
Why was acetone used in the (alcohol oxidation reaction: 9 flourenone) reaction? hint: sodium hypochlorite solution is an aqueous solution. Thank YOu
Use Python: the formula for converting a temperature from Fahrenheit to Celcius is C=5/9(f-32) where F...
Use Python: the formula for converting a temperature from Fahrenheit to Celcius is C=5/9(f-32) where F is the Fahrenheit temperatre and C is the celcius temperature. Write a function named celcius that accepts a Fahrenheit temperature as an argument. the function should return the temperature, convertedm to celcius. Demonstrate the function by calling it in a loop that displays a table of the fahrenheit temperatures 0 through 20 and their Celsius equivalents.
a sample of gas has a mass of 0.171g at P=721mm Hg and 32 dregrees Celsius....
a sample of gas has a mass of 0.171g at P=721mm Hg and 32 dregrees Celsius. What is the molecular weight of the compound?
When 100 mL of Ba(NO3)2 solution at 25 degrees Celsius is mixed with 100 mL solution...
When 100 mL of Ba(NO3)2 solution at 25 degrees Celsius is mixed with 100 mL solution CaSO4 solution at 25 degrees Celsius in calorimeter, the white solid BaSO4 forms and the temperature of the mixture increases to 28.1 degrees Celsius. Assuming that the calorimeter absorbs only a negligible quantity of heat and the specific heat capacity of the solution is 4.184 J/g.degrees Celsius, and that the density of the final solution is 1.0 g/mL, calculate the enthalpy change of this...
Water freezes at 0 degrees Celsius, which is the same as 32 degrees Fahrenheit. Also water...
Water freezes at 0 degrees Celsius, which is the same as 32 degrees Fahrenheit. Also water boils at 100 degrees Celsius, which is the same as 212 degrees Fahrenheit. (Use fractions in your answers.) (a) Use the freezing and boiling points of water to find a formula expressing Celsius temperature C as a linear function of the Fahrenheit temperature F. (b)This means that for every one degree increase in the Fahrenheit temperature, the Celsius temperature will increase by what degree?
The freezing point of water is 0 degree celsius (32 degree F). The boiling point water...
The freezing point of water is 0 degree celsius (32 degree F). The boiling point water is 100 degree celsius (212 degree F). The relationship between celsius is linear. (a) Find an equation of the line which relates the two measures of temperature. (b) Use your line from part (a) to find the temperature at which the two dofferent types of measurements are equal.
Calculate the buffering index in the pH range 5-9 for a 0.002 M solution of carbonic...
Calculate the buffering index in the pH range 5-9 for a 0.002 M solution of carbonic acid at 25oC. (Hint: This problem may be solved quickly and easily using a spreadsheet.) Use only Ka1 for this calculation; you may ignore Ka2.
There are four aqueous solutions at 25 degrees celsius. Solution A Given [H+] = 1.3 x...
There are four aqueous solutions at 25 degrees celsius. Solution A Given [H+] = 1.3 x 10-9 M, find [OH-], pH, and pOH. Solution B Given [OH-] = 0.098 M, find [H+], pH, and pOH. Solution C Given pH = 8.16, find [H+], [OH-], and pOH. Solution D Given pOH = 1.03, find [H+], [OH-], and pH.
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT