To determine how many hundreds are in 70 tens, we need to first convert the tens into hundreds. Since 1 hundred is equal to 10 tens, we can divide 70 tens by 10 to get 7 hundreds. Therefore, there are 7 hundreds in 70 tens.
70 of them because 70*10 = 700
60 of them because 60 times 10 = 600
There are 9 hundreds in 900. To find out how many tens are in 900, we need to divide 900 by 10. 900 divided by 10 equals 90, so there are 90 tens in 900.
To determine the number of hundred thousands in 10,000 tens, we first need to convert 10,000 tens to hundreds. Since there are 10 tens in a hundred, we divide 10,000 by 10 to get 1,000 hundreds. Next, we convert 1,000 hundreds to thousand thousands by dividing by 10, which equals 100 thousand thousands. Therefore, there are 100 hundred thousands in 10,000 tens.
How many tens are the same as 6 hundreds. Explain your reasoning
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!
Seven.
700
3
10*20 = 200
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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }