Conversion problem ( fahrenhiet to celsius)

can’t pass test case. m getting the expected output though.
https://ide.codingblocks.com/#/s/20628

You have taken valuef as an int.
But while updating its value you are multiplying it by 0.55. So take it as float instead.

yeah i figured that. anyway thanks.

What did you do?
After converting valuef to float it is storing float values but we want to store integer values in valuef.

multiply like this (whatever)5/9
instead of 5/9
(whatever)
:smile:

Thanks :slight_smile: