Closed marcIhm closed 1 day ago
currently round(2.5) returns 2; in addition round(2.449, 2) should return 2.45
On second thought, this is not the way to go; round is only exact for integers but not for fractional numbers. Limiting precision should be the very last step on output.
See above.
currently round(2.5) returns 2; in addition round(2.449, 2) should return 2.45