I got no idea what language that is, but could it have some sort of
x = double(x * 100) / 100;
?
Other way could be doing bit operations (shifting, rolling and adding) instead of multiply/divide. That's atleast what we do on 8-bit world ;)
x = double(x * 100) / 100;
?
Other way could be doing bit operations (shifting, rolling and adding) instead of multiply/divide. That's atleast what we do on 8-bit world ;)
---