answersLogoWhite

0

How much does 147 thousands equal in millions

User Avatar

Wiki User

7y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

How many thousands equal 9000 ones?

To determine how many thousands equal 9000 ones, you need to understand the concept of place value. In the number 9000, the 9 is in the thousands place, meaning there are 9 thousands. Each thousand is equal to 1000 ones, so 9000 ones is equal to 9 thousands.


How many thousands equal 2000 ones?

Two thousand


What number is equal to 12 thousands plus 4 tens plus 7 ones?

7.4120


How many ones are in 3 ten thousands?

In 3 ten thousands, there are 30,000. To find the number of ones in this figure, you can break it down: 30,000 contains 30 thousands, which is equivalent to 30,000 ones. Therefore, there are 30,000 ones in 3 ten thousands.


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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }