public String toString() { String zero = ""; if (cents <= 10) { zero = "0"; }
return euros + "." + zero + cents + "e"; }
The mood.fi webpage for exercise 95 also still displays
If( cents <= 10 )
Instead of just <.
Glad to be of assistance. This is a great course.