answersLogoWhite

0

Why is rounding num bers easy?

Updated: 8/20/2019
User Avatar

Wiki User

12y ago

Best Answer

Rounding numbers is easy because their are two rules to rounding numbers.

1) a </= 4 then a = 0

2) a >/= 5 then a = 10

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why is rounding num bers easy?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What num bers is 49 divisible by?

1, 7 and 49.


How many syllables in the word numbers?

Numbers:2 Num-bers


Give you a free Club Penguin membership code num bers?

here 9273482784727490


What are Natural Num bers?

Positive integers. Or non-negative integers. No point in arguing, simply ask your teacher which one they mean.


When was Lipman Bers born?

Lipman Bers was born on 1914-05-22.


When did Lipman Bers die?

Lipman Bers died on 1993-10-29.


How do you write a c program to convert binary code to Gray code?

unsigned binary_to_gray (unsigned num) { return num ^ (num &gt;&gt; 1); } unsigned gray_to_binary (unsigned num) { /* note: assumes num is no more than 32-bits in length */ num ^= (num &gt;&gt; 16); num ^= (num &gt;&gt; 8); num ^= (num &gt;&gt; 4); num ^= (num &gt;&gt; 2); num ^= (num &gt;&gt; 1); return num ; }


How do you create a string and reverse a string in visual basic?

Dim x As String x = "HELLO" Dim tmpString As String tmpString = Nothing For j = 0 To x.Length - 1 Dim int int=x.Length - 1 int=int-j tmpString=x(j) Next


How to round?

Rounding numbers is easy if it 1234 we can put 0 andnif 56789 we get it 10


What is an easy way of explaining why rounding is useful in maths?

To estimate numbers more easily.


Cookie monster phrases?

num num num


How do you convert a number into a degree circle?

In simple Python code: def convertToAngle(num): while True: if num &lt; 0: num = 360 - num elif num &gt; 360: num -= 360 else: break return num