← Back to Home

Rounding to the Nearest 100

Master rounding numbers to the nearest hundred

How to Round to the Nearest 100

Rounding to the nearest 100 means finding which hundred (100, 200, 300, 400...) a number is closest to. The key is simple: look at the tens digit!

The Rule for Rounding to Nearest 100

If the tens digit is 5 or more (5, 6, 7, 8, 9):

Round UP to the next hundred ⬆️

If the tens digit is less than 5 (0, 1, 2, 3, 4):

Round DOWN to the previous hundred ⬇️

Step-by-Step Process

Step 1: Identify the Tens Digit

Find the second-to-last digit (the tens place).

In 567, the tens digit is 6

Step 2: Apply the Rounding Rule

Since 6 ≥ 5, round UP to the next hundred.

567 is between 500 and 600, closer to 600

Step 3: Write the Answer

567 → 600

Practice Examples

NumberTens DigitDirectionRounded to Nearest 100
2343 (< 5)Down ⬇️200
5676 (≥ 5)Up ⬆️600
8505 (= 5)Up ⬆️900
1424 (< 5)Down ⬇️100
9999 (≥ 5)Up ⬆️1000
12343 (< 5)Down ⬇️1200
37898 (≥ 5)Up ⬆️3800

Visual Number Line

Example: Where does 567 round to?

500

Previous hundred

567

Tens digit is 6 (≥ 5)

600 ✓

Rounds to this!

Since 6 ≥ 5, we round UP to 600

Real-World Uses

💰 Money Estimates

Round prices for quick estimates

$567 → About $600

👥 Population

Estimate crowd sizes or population

1,234 people → About 1,200

📊 Business Metrics

Round sales figures for presentations

$3,789 → About $3,800

📏 Measurements

Round distances or quantities

567 miles → About 600 miles

How to Round to 100 in Different Tools

Excel

=ROUND(567, -2) → 600

The -2 means "round to hundreds place"

Python

round(567, -2) → 600

JavaScript

Math.round(567 / 100) * 100 → 600

Quick Reference

👀 What to Check

The TENS digit

(Second from the right)

⬆️ Round UP if...

5, 6, 7, 8, 9

⬇️ Round DOWN if...

0, 1, 2, 3, 4

💡 Example

567 → Tens is 6

6 ≥ 5, so round to 600