hey there, im making a little program that converts celcius to farenheit blah blah not important
heres the situation:
celcius = c
farenheit = f
(bot c and f are doubles)
c = (5/9) * (f-32)
weird thing is using that equation doesnt work and my value for C will be zero
i know it a problem with 5/9 because if i use someone like 10/5 itll work just fine. so whats the problem with 5/9? is division whacky in java or something?

