fernhit to celcius convertor program in c++/c
#include<iostream>
using namespace std;
int main()
{
float f,c;
cout<<"enter the feranhit"<<endl;
cin>>f;
c=(f-32)*5/9;
cout<<c;
return 0;
}
fernhit to celcius convertor program in c++/c
#include<iostream>
using namespace std;
int main()
{
float f,c;
cout<<"enter the feranhit"<<endl;
cin>>f;
c=(f-32)*5/9;
cout<<c;
return 0;
}