Hello,
I know of the function Round(X: Real): Longint which rounds to the nearest whole number unless the input is exactly in the middle of two integers, in which case it will use "banker's rounding" and round to the nearest even integer. Is there a way to tell it not to use banker's rounding, but to simply round up in this case?
If not, I need to figure out the simplest way to get the digits to the right of the decimal place of the input value (i.e., is modulus the simplest way or is there a built in function?) so that I can round it up myself if they are equal to .5. Does anyone have any advice?
Thanks.