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




Cpp

Related
convert java to c++ Code Example convert java to c++ Code Example
udo apt install dotnet-sdk-5 permission denied Code Example udo apt install dotnet-sdk-5 permission denied Code Example
max of 3 numbers in c++ Code Example max of 3 numbers in c++ Code Example
online compiler to calculator time complexity Code Example online compiler to calculator time complexity Code Example
bool nullable to bool c# Code Example bool nullable to bool c# Code Example

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