0
Write a program that will ask for a temperature in celcius . The program will convert the temperature to farenheit and
3 Réponses
+ 13
and
?
+ 3
Fahrenheit = (Celsius * (9/5)) + 32
Celsius = (Fahrenheit * (5/9)) - 32
This should help you to get started.
Happy coding!
0
This is a very basic and easy problem. You should do it yourself :)