In the number 22222, the digit in the thousands place is 2 and the digit in the hundreds place is also 2. Therefore, the correct equation that compares these places is 2 (thousands) = 2 (hundreds). This shows that the values in both places are equal.
It is simply an unspecified number of hundreds of thousands!
hundreds
Sixty hundreds can be converted to thousands by dividing by 10, since 1 thousand equals 10 hundreds. Therefore, 60 hundreds is equal to 6 thousands.
To convert hundreds of thousands to millions, you divide by 10. Since 60 hundreds of thousands is equivalent to 60 x 100,000, that equals 6,000,000. Therefore, 60 hundreds of thousands is 6 million.
7 hundreds thousands
Hundreds thousands chemical equations of organic compounds are known !
Thousands
It is simply an unspecified number of hundreds of thousands!
hundreds
1535 in and of itself is not an equation. In the number 1535 the one is thousands, the 5 is hundreds, the 3 is tens and the 5 is ones.
Sixty hundreds can be converted to thousands by dividing by 10, since 1 thousand equals 10 hundreds. Therefore, 60 hundreds is equal to 6 thousands.
How many thousands equal 50 hundreds?
To convert hundreds of thousands to millions, you divide by 10. Since 60 hundreds of thousands is equivalent to 60 x 100,000, that equals 6,000,000. Therefore, 60 hundreds of thousands is 6 million.
7 hundreds thousands
Obviously not!!
To find out how many hundred thousands are in 7,000 hundreds, first convert hundreds to thousands. Since 1 hundred is 0.1 thousand, 7,000 hundreds is equal to 700 thousands. There are 10 hundred thousands in 700 thousands, so the answer is 10.
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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }