EDIT:
Using shl, MOD, DIV, shr, or any other operators. I can't get conditionals to work.
In a constant round up an extended number e.g.
const aaa = 3.14; bbb = 3.14; // round this one up
|
Normally one would use I tried it in Free Pascal and there it works. IIRC it works in Borland Delphi and Turbo Pascal too (it was several years since I programmed in pascal so I could be wrong). If none of the above works, then you might try to put it in a global variable. Even if global variables is bad, it is sometimes the least bad thing to do. |
|||
|
|
(...calculations...) div 1. – some Sep 18 '12 at 22:10TruncorRoundthe value first before you can use bitwise ops. – Ken White Sep 18 '12 at 22:39