answersLogoWhite

0

Why is rounding num bers easy?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

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

13y ago

What else can I help you with?

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


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


How do you write a program in C plus plus print 1 to 10000 in Roman numerals?

#include&lt;iostream&gt; #include&lt;sstream&gt; #include&lt;exception&gt; std::string decimal_to_roman (unsigned num) { std::stringstream ss {}; while (num&gt;0) { if (num&gt;10000) throw std::range_error ( "ERROR: decimal_to_roman (unsigned num) [num is out of range]"); else if (num==10000) { ss&lt;&lt;"[M]"; num-=10000; } else if (num&gt;=9000) { ss&lt;&lt;"[CM]"; num-=9000; } else if (num&gt;=5000) { ss&lt;&lt;"[D]"; num-=5000; } else if (num&gt;=4000) { ss&lt;&lt;"[CD]"; num-=4000; } else if (num&gt;=1000) { ss&lt;&lt;"M"; num-=1000; } else if (num&gt;=900) { ss&lt;&lt;"CM"; num-=900; } else if (num&gt;=500) { ss&lt;&lt;"D"; num-=500; } else if (num&gt;=400) { ss&lt;&lt;"CD"; num-=400; } else if (num&gt;=100) { ss&lt;&lt;"C"; num-=100; } else if (num&gt;=90) { ss&lt;&lt;"XC"; num-=90; } else if (num&gt;=50) { ss&lt;&lt;"L"; num-=50; } else if (num&gt;=40) { ss&lt;&lt;"XL"; num-=40; } else if (num&gt;=10) { ss&lt;&lt;"X"; num-=10; } else if (num==9) { ss&lt;&lt;"IX"; num-=9; } else if (num&gt;=5) { ss&lt;&lt;"V"; num-=5; } else if (num==4) { ss&lt;&lt;"IV"; num-=4; } else if (num&gt;=1) { ss&lt;&lt;"I"; num-=1; } } return ss.str(); } int main (void) { for (unsigned n=1; n&lt;=10000; ++n) { try { std::cout &lt;&lt; n &lt;&lt; "\t = " &lt;&lt; decimal_to_roman(n) &lt;&lt; std::endl; } catch (std::range_error&amp; e) { std::cerr&lt;&lt;e.what()&lt;&lt;std::endl; break; } } }


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

To estimate numbers more easily.