Notes
Returns the rounded approximation of this Decimal. The number is rounded to zero decimal places using half-even rounding mode, that is, it rounds towards the “nearest neighbor” unless both neighbors are equidistant, in which case, this mode rounds towards the even neighbor.
Here are some examples:
Decimal x = 12.45;
system.debug(Math.round(x));
Output: 12
Video
Video does not exists.