+ 1
Can anyone tell me how to make a program in c++ to convert temperature from °c to °F!??
4 Respuestas
+ 7
Just use the conversion formula that goes on like,
((9 * Celsius) / 5) + 32
And you get the temperature in Fahrenheit.
+ 5
@Deepak: Yep! You can.
http://www.fredosaurus.com/notes-cpp/basics/c2f-loop.html
0
can we resolve this using loop?
0
thanks bro i made it