I\'m on the 8th chapter (Methods, Constructors, and Fields) of my Java methods book and I\'m having a problem with one of my exercises.
The provided code is Tempera
The problem seems to be 5/9. They are seen as an integer, and 5/9 is 0.something which is 0 as an integer. So whatever * 0 = +-0 :)
Place a "d" after the numbers, (5d/9d) forcing the compiler to consider them doubles.