c++ program for converting Celsius into Fahrenheit
Answers
Answered by
2
It's simple bro.
# include<iostream>
int main()
{
float a,b;
cout<<"Enter a value:";
cin>>a;
b = a * 9/5 + 32;
cout<<"The temperature in fahrenheit is: "<<b;
return 0;
}
Hope this helps!
# include<iostream>
int main()
{
float a,b;
cout<<"Enter a value:";
cin>>a;
b = a * 9/5 + 32;
cout<<"The temperature in fahrenheit is: "<<b;
return 0;
}
Hope this helps!
Similar questions