05-04-2025, 12:26 PM
Code: (Select All)
For i = 1 To 10
x = i + .5
Print x, CInt(x)
Next
givesCode: (Select All)
1.5 2
2.5 2
3.5 4
4.5 4
5.5 6
6.5 6
7.5 8
8.5 8
9.5 10
10.5 10
it follows a simple ruleif integer-part is odd then round-up
if integer-part is even then round-down