Computers have "optimized" integer math and then "floating point" math when needed.
So, 1/2 = 0 (integer divided by integer yields an integer, using TRUNCATION NOT ROUNDING)
2/3 = 0
9/10 = 0
10/10 = 1
Do-more will do everything in integer math UNTIL the expression uses a REAL, THEN ALL REMAINING CALCULATIONS use Floating Point.
So (1 + 4) / 2 = 2
(1 + 4) / 2.0 = 2.5
(1 + 4.0) / 2 = 2.5
TOREAL(1 + 4) / 2 = 2.5 (Do-more's TOREAL() function is usually used on D/V/.Acc integer registers, but can take any "expression" as its parameter)
RAD/DEG/SQRT functions always return a REAL result, regardless of whether its parameter expression type is integer or real. There might be a couple more that are that way. Can't remember off the top of my head. STDEVR/STDEVPR are 2 more.