- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to Round off a number?
Rounding off the numbers :
Rounding means making a number simpler but keeping its value close to what it was.
The result is less accurate, but easier to use.
To round off decimals:
- Find the place value you want (the "rounding digit") and look at the digit just to the right of it.
- If that digit is less than 5, do not change the rounding digit but drop all digits to the right of it.
- If that digit is greater than or equal to 5, add 1 to the rounding digit and drop all digits to the right of it.
To round off whole numbers:
- Find the place value you want (the "rounding digit") and look to the digit just to the right of it.
- If that digit is less than 5, do not change the "rounding digit" but change all digits to the right of the "rounding digit" to zero.
- If that digit is greater than or equal to 5, add 1 to the rounding digit and change all digits to the right of the rounding digit to zero.
- Related Articles
- How to round off a number in Python?
- How to round off a floating number using Python?
- How to round off to nearest thousands?
- Round off the following number to the nearest tens. 7896.
- Round off the following number to the nearest hundred:236
- How to round off the numbers nearest tens?
- How to round off numbers In nearest $100$.
- Round off 1120 to nearest hundred.
- Round off 4200 to the nearest thousands.
- Round off to the nearest thousand.$5914$
- $231546 \div 45$ round off to nearest 10.
- 439+334+4,317. Round off to nearest thousand
- We have to round off 42 to nearest 10s
- How to round up a number in JavaScript?
- Java program to round a number

Advertisements