Why is:
Math.round(6.0/11.0*10000.0)*0.01 // = 54.550000000000004
but
Math.round(6.0/11.0*10000.0)/100.0 // = 54.55
And what would be the right way to round this correctly.
For example I have int x, int y and I need a rounded x/y*100 on 2 decimal points.
Thank you.