Celsius to Fahrenheit
Python Input/Output
formula + output
Flowchart (ISO 5807)
Source code
def to_fahrenheit():
c = float(input())
f = c * 9 / 5 + 32
print(f) formula + output
def to_fahrenheit():
c = float(input())
f = c * 9 / 5 + 32
print(f)