Rounding to nearest integer

When rounding to the nearest integer, we do exactly the same steps as when rounding to decimal places, but the nth decimal place is the units column (the digit to the left of the decimal point).

Make sure to round up if the next digit is 5 or more, and then we remove all digits after the decimal point.

Examples

Round 4.3 to the nearest integer

Round 5.7 to the nearest integer

Round 2.5 to the nearest integer

Round 9.99 to the nearest integer

Round 0.49 to the nearest integer

Don’t be tempted to round 0.49 to 0.5, which would then round to 1. Always look directly at the digit after the decimal point - don’t try to round in stages!

Round 999.50 to the nearest integer