Computer Science, asked by uashakm, 1 year ago

c++ program for converting Celsius into Fahrenheit

Answers

Answered by siddhartharao77
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!
Similar questions