Skip to content

Commit 9cf65ff

Browse files
committed
Resolução do exercicio 15
1 parent e75d8ee commit 9cf65ff

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

exercicio-15/willidert/exercicio.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def celsius2fah(c):
2+
return c * 9 / 5 + 32
3+
4+
5+
def fah2celsius(f):
6+
return (f - 32) * 5 / 9

0 commit comments

Comments
 (0)