Keep decimals when using doubles?

I have made this double:double pp = 9.10but when I print it I just get 9.1.Is there someway to keep it like 9.10 when I print it?
[157 byte] By [lokpesta] at [2007-10-3 4:29:09]
«« Kakuro
»» JNDI SID
# 1
Check out the DecimalFormat class. 1.000..0 == 1; you just wanta diifferent textual representation of the same number.kind regards,Jos
JosAHa at 2007-7-14 22:32:13 > top of Java-index,Java Essentials,Java Programming...