100
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.
1
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.
In 12000, there are;12 thousands120 hundreds and1200 tens
how many tens,hundreds, and thousands in 12,000
How many tens are the same as 6 hundreds. Explain your reasoning
To convert hundreds to tens, you multiply the number of hundreds by 10. Therefore, 300 hundreds is equal to 300 × 10, which equals 3,000 tens.
50 tens
No
There are 7 hundreds and 6 tens in 760 or 76 tens
To find out how many hundred thousands are in 10,000 tens, first convert tens to hundreds: 10,000 tens equal 100,000. Then, since one hundred thousand is equivalent to 1 hundred thousand, the answer is 1. Therefore, there is 1 hundred thousand in 10,000 tens.
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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }