a = Ceil(a*100!)/100
If you only need 100ths, you could also stick with Ints and have the unit be a hundredth of the original. Eg. if you are using pixels, only divide by 100 before using the number for drawing.
Be aware that floor and ceil don't round the same way as you might think they do. (They are in 'reverse' for negative numbers, floor -6.5 is -7)
Fortunately they work as they should. Unlike in some MS products...