two decimal places. 5 in the tens and 1 in the hundreds.
It is 10790.
It is that there are no tenths in the decimal number
Thousands - Hundreds - Tens - One - Decimal - Tenth - Hundredth - Thousandth
Yes.
It refers to counting in units and tens, multiples of tens (such as hundreds, thousands and so on), and fractions of tens (such as tenths, hundredths and so on).
74749
the second one .... first # = hundreds second # = tens third # = ones
To find out how many tens are in 40 hundreds, first convert hundreds to tens. Since 1 hundred equals 10 tens, 40 hundreds equals 40 x 10 = 400 tens. Therefore, there are 400 tens in 40 hundreds.
800 tens. ------------------------ The tens column is two columns before the decimal point - in this case the decimal point is hiding at the end of the number and the tend column is the second digit from the right hand end. The tens column contains a 0 therefore there are no tens in 8000 8000 is eight thousands plus no hundreds plus no tens plus no ones.
You cannot round a number with a place value larger than the place value you seek to round it to. i.e. You cannot round thousands to hundreds, hundreds to tens, tens to ones, etc.
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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }