Horje
 convert fahrenheit to celsius Code Example
convert fahrenheit to celsius
#include<iostream>
using namespace std;
float scropio(float happy);
int main()
{
	float celcious;
	float fahrenhiet;
	cout<<"Please enter the tem in Fahrenhiet=";
	cin>>fahrenhiet;;
	cout<<"F.";
	celcious=scropio(fahrenhiet);
	cout<<"\nCelcious="<<celcious<<" C."<<endl;
	cout<<endl;
	return 0;
}
float scropio(float fahrenhiet)
{
	float celcious;
	celcious = ((fahrenhiet-32)*5/9);
	return celcious;
}




Cpp

Related
intage1 was not declared in this scope C++ Code Example intage1 was not declared in this scope C++ Code Example
cplusplusbtutotrail Code Example cplusplusbtutotrail Code Example
idnefier endl in undefince Code Example idnefier endl in undefince Code Example
create new node in tree Code Example create new node in tree Code Example
c++ create an empty vector Code Example c++ create an empty vector Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7