Skip to content
This repository has been archived by the owner on Jan 16, 2021. It is now read-only.

Latest commit

 

History

History
57 lines (50 loc) · 1.37 KB

ROUND.org

File metadata and controls

57 lines (50 loc) · 1.37 KB

Top | Up (Rounding) | < Previous (FLOOR) | Next (CEIL) >

ROUND

Rounds to the nearest whole number. .5 is rounded up (away from 0).

Syntax

ROUND number# OUT whole_number#
ROUND integer% OUT integer%

Examples

PRINT ROUND(6.2) '6
PRINT ROUND(10.5) '11
PRINT ROUND(-2.5) '-3
InputOutput
-0.5-1
0.51
1.52
-00
infinityinfinity
NaNNaN