Discussion about this post

User's avatar
Adriana Vanegas's avatar

Calculation includes the 32 within the parentheses, when it shouldn’t. Calculation should be: fahrenheit = celsius * (9 / 5) + 32

Expand full comment
Steven Elkind's avatar

misplaced parenthesis fahrenheit = celsius * (9 / 5 + 32) -> fahrenheit = celsius * (9 / 5) + 32

alternatively removing the parentheses will work fahrenheit = celsius * 9 / 5 + 32

Expand full comment
1 more comment...

No posts