Value = Round ( Number [ , Digits ] )
Rounds a number to its nearest integer, if Digits is not specified.
If Digits is specified, rounds to 10 ^ Digits.
PRINT Round(Pi, -2) <hr>3.14
PRINT Round(1972, 2) <hr>2000