answersLogoWhite

0

Five

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is the difference between 14 tens and 4 hundreds?

14 tens is 140 4 hundreds is 400 The difference is 260.


How do you write 167?

167 may be written as one hundred sixty-seven. A hyphen should always be used between the tens and units digits when writing out numbers, but never between the hundreds and tens digits.


How would you regroup 4 tens to find the difference between 341 and 228?

How would you regroup 4 tens to find the difference between 341 and 228?


What is the place value of the numbers in one hundred thirteen?

hundreds,tens,units


How do you write numbers 3 thousands 14 hundreds 9 tens?

4,490


What is the difference between compatible numbers and rounding?

Rounding is going to the nearest tens, hundreds, thousands etc., depending on the problem. Compatible numbers are numbers the work well with each other. Both of these are estimating.


What is the place value of the 2s in 2200?

Place names of numbers, from the right to the left are. Units Tens Hundreds Thousands Tens of Thousands Hundreds of Thousands Millions. So 2,200 Units is '0' Tens is '0' Hundreds is '2' Thiusands is '2'


What is the rule of adding integers?

Make sure that you add units to units, tens to tens, hundreds to hundreds, and so on. Keep the digits which represent the numbers in the correct columns before you add.


What are two three digit numbers the tens digit is half the hundreds digit and the ones digit is half the tens digit?

421 and 842


How many hundreds are there altogether in 990 tens?

Well, isn't that a lovely little math puzzle we have here. If we have 990 tens, that means we have 99 hundreds in total. Each hundred is made up of 10 tens, so by dividing 990 by 10, we find our answer - 99 hundreds in all. Happy little numbers, just waiting to be discovered!


How many 3's between 300 and 400?

To find how many times the digit '3' appears between 300 and 400, we look at the numbers from 300 to 399. The hundreds place always has '3' for these numbers, contributing one '3' for each of the 100 numbers (300 to 399). Additionally, the '3' appears in the tens place in the numbers 330 to 339, contributing another 10 occurrences. In total, there are 1 (from the hundreds place) + 10 (from the tens place) = 11 occurrences of the digit '3' between 300 and 400.


You are a four digit number your ones is twice your tens your hundreds is five less than your ones your thousands place is the sum of your tens and hundreds what number are you?

There is no four digit number where the ones is twice the tens, the hundreds is five less than the ones, and the thousands is the sum of the tens and hundreds. int ones, tens, hundreds, thousands; for (thousands=1; thousands<10; thousands++) { /**/ for (hundreds=0; hundreds<10; hundreds++) { /**/ /**/ for (tens=0; tens<10; tens++) { /**/ /**/ /**/ for (ones=0; ones<10; ones++) { /**/ /**/ /**/ /**/ if (ones != 2 * tens) break; /**/ /**/ /**/ /**/ if (hundreds != ones - 5) break; /**/ /**/ /**/ /**/ if (thousands != tens + hundreds) break; /**/ /**/ /**/ /**/ printf ("dd\n", thousands, hundreds, tens, ones); /**/ /**/ /**/ } /**/ /**/ } /**/ } }