Question:

How to convert Fahrenheit to Celcius?

by  |  earlier

0 LIKES UnLike

How to convert Fahrenheit to Celcius?

 Tags:

   Report

5 ANSWERS


  1. Deduct 32, then multiply by 5, then divide by 9


  2. It's easy if you have a calculator.

    From F To C

    Temperature-32 Divide by 1.8

    From C To F

    Temperature x 1.8 + 32

    I hope you can get it.

  3. F to C

    5/9 F - 32 = C

    C to F

    9/5 C + 32 = F

    -40 C = -40 F

    (But now it's called centigrade instead of Celcius)

  4. I am giving you a temperature converter. All you need is C++ application. Copy the below coding and paste it in C++.

    #include<iostream.h>

    #include<conio.h>

    void main()

    {

    clrscr();

    char x,y;

    float a,g;

    {

    cout<<"Name the scale of which you are giving the teperature"<<endl;

    cout<<"c for celcius and f for fahreheit"<<endl;

    cin>>x;

    }

    {

    cout<<"Now enter your temperature"<<endl;

    cin>>a;

    }

    {

    cout<<"Now enter the scale in which you want to convert the temperature"<<endl;

    cin>>y;

    }

    {

    if((x=='c')&&(y=='f'))

    g=(a*9/5)+32;

    }

    {

    if((x=='f')&&(y=='c'))

    g=(a-32)*5/9;

    }

    cout<<"Your temperature is "<<g;

    getch();

    }

    After pasting it, press F9, it will compile the codings. Press OK.

    Now from the File menu, select save and Save it with your desired name.

    After that go to the compile menu at the top and select "Build All "

    Close C++.

    Go to the folder named "Source" in the main C++ folder. You will see an .exe file of the name you gave. Double click it.

    Enjoy converting celsius to fahrenhiet and farenheit to celcius.

  5. degree F = (deg. C *9/5) + 32

Question Stats

Latest activity: earlier.
This question has 5 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions