Write a C++ program which accept temperature in Fahrenheit and print it in centigrade.
Program Code:
#include<iostream>
using namespace std;
int main()
{
float centigrade;
float fahrenheit;
cout<<"Enter temp. in Fahrenheit: ";
cin>>fahrenheit;
cout<<endl;
centigrade = (fahrenheit - 32) * 5/9;
cout<<"Temp. in Celsius: "<<centigrade;
return 0;
}
The program code is tested on www.jdoodle.com
Output:
Enter temp. in Fahrenheit: 98
Temp. in Celsius: 36.6667
Thanks
Mukesh Rajput
Post A Comment:
0 comments: