Math Rounding Challenge

Math.Floor(6.283) = 6

Math.Ceiling(6.283) = 7

Math.Round(6.283,1) = 6.3

Math.Round(6.283,2) = 6.28

1 Like