Rounding to nearest integer
When rounding to the nearest integer, we do exactly the same steps as when
rounding to decimal places, but the
Make sure to round up if the next digit is
Examples
Round 4.3 to the nearest integer
- The digit we are rounding to is the
4 . - The next digit is
3 , which is less than5 , so we round down and keep the4 the same. - Answer:
4 .
Round 5.7 to the nearest integer
- The digit we are rounding to is the
5 . - The next digit is
7 , which is more than5 , so we round up and increase the5 by1 to get6 . - Answer:
6 .
Round 2.5 to the nearest integer
- The digit we are rounding to is the
2 . - The next digit is
5 , which is equal to5 , so we round up and increase the2 by1 to get3 . - Answer:
3 .
Round 9.99 to the nearest integer
- The digit we are rounding to is the
9 . - The next digit is
9 , which is more than5 , so we round up and increase the9 by1 to get10 . - Since
9 becomes10 , we set the units place to0 and increase the tens place by1 (which is also9 ) to get10 (so now we have10.0... ). - Answer:
10 .
Round 0.49 to the nearest integer
- The digit we are rounding to is the
0 . - The next digit is
4 , which is less than5 , so we round down and keep the0 the same. - Answer:
0 .
Don’t be tempted to round
0.49 to0.5 , which would then round to1 . Always look directly at the digit after the decimal point - don’t try to round in stages!
Round 999.50 to the nearest integer
- The digit we are rounding to is the last
9 (the units place). - The next digit is
5 , which is equal to5 , so we round up and increase the last9 by1 to get10 . - Since
9 becomes10 , we set the units place to0 and increase the tens place by1 (which is also9 ) to get10 . - We repeat this process for the hundreds place, resulting in
1000.0... . - Answer:
1000 .