Tens of thousands of years means that it is any where from 10,000 years to 99,000 years.
3 2 is 100 thousands 3 is 10 thousands 4 is thousands 5 is hundreds 6 is tens 7 is units
no more like thousands of years ago
The wind has been used for thousands of years. Windmills were in use by the Romans and earlier to grind corn, pump water and even cut wood.
Fossil Fuel Power Plants were created when.....
Both Rainforests and coral reefs. In the most productive habitats, rainforests and coral reefs, there are as many as tens of thousands of species of plants and animals for every 1 square kilometer.
Tens of thousands means multiples of 'ten thousand' (10,000) 4 tens of thousands means there are 4 times 10,000 which is 40,000
tens of thousands of years ago.
Many tens of thousands of years.
The territory of Romania was populated from tens of thousands years.
i mean ones,tens,hundreds or thousands
Variable. From tens of years to hundreds and probably thousands
To find out how many ten thousands are in 2000 tens, first convert tens to thousands. Since 10 tens equal 1 hundred, 2000 tens equal 200 hundreds or 20 thousands. Therefore, there are 2 ten thousands in 2000 tens.
Mammoths have been extinct for tens of thousands of years.
Tens of thousands
UHH Geologist predict in several tens of thousands of years.
To determine the number of thousands in 400 tens, we first need to convert 400 tens to its equivalent in hundreds, which is 40 hundreds. Then, we convert 40 hundreds to its equivalent in thousands, which is 4 thousands. Therefore, there are 4 thousands in 400 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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }