Horje
c++ program to convert fahrenheit to celsius Code Example
c++ program to 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
cast c++ Code Example cast c++ Code Example
how to add c++14 in sublime text Code Example how to add c++14 in sublime text Code Example
remove a element from an array c++ Code Example remove a element from an array c++ Code Example
how to convert int to FString c++ ue4 Code Example how to convert int to FString c++ ue4 Code Example
Structure of s void function Code Example Structure of s void function Code Example

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