Write a program that gets temperature from user in Celsius and converts it into Fahrenheit using formula: F=9/5*C+32.

Write a program that gets temperature from user in Celsius and converts it into Fahrenheit using formula:  F=9/5*C+32.





#include<iostream>
using namespace std;
int main()
{
float c,f;
cout<<"\t Celsius to Fahrenheit Convertor "<<endl;
cout<<"\n";
cout<<"Enter the temperature in Celsius "<<endl;
cin>>c;
f=(c*9/5)+32;
cout<<"\n";
cout<<"Temperature in Fahrenheit is "<<f<<endl;
}


Write a program that gets temperature from user in Celsius and converts it into Fahrenheit using formula:  F=9/5*C+32.