C++ program to convert Fahrenheit to Celsius

Convert Fahrenheit to Celsius in C++

Here you will get and know the C++ program to convert Fahrenheit to Celsius. To convert Fahrenheit to Celsius formula is given below:

Formula:

C = ( F – 32 ) / 1.8

C++ program to convert Fahrenheit to Celsius

Output

Enter the Temperature in Fahrenheit: 86

Equivalent Temperature in Celsius: 30

 

 

 

Check out our other C++ programming Examples

 

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top