All problems
EasyPython Basics
Celsius to Fahrenheit
Convert 37°C to Fahrenheit using F = C * 9/5 + 32.
- #math
- #conversion
Sample input
c = 37
Sample output
98.6
celsius-to-f.py
Output
Press "Run code" to execute.
Loading…
Convert 37°C to Fahrenheit using F = C * 9/5 + 32.
c = 37
98.6
Press "Run code" to execute.