It is related because to get from 1 to 10 you x10.
For an example...
"how is 10 related to 1000"
Well if you see it in a place value chart it has 100 difference so...
It is related because to get from 10 to 1000 you x100.
I hope this helped as I am learning a similar thing at school! :)
the tens place is on the left for example the # 15 1 is the tens and 5 is the ones
the second one .... first # = hundreds second # = tens third # = ones
12 tens mean there are 1 tens and 2 ones, as only one digit can occupy a column.
Oh, dude, it's like super easy. So, you start with 78, right? And then you regroup 1 ten as 10 ones. So, you take 1 from the tens place and add it to the ones place, making it 8 tens and 18 ones. See, easy peasy lemon squeezy!
The number is 3501 because it is less than 3502 an it has a 1 in the ones place and a zero in the the tens place so its 3501.
1 in the tens place = 10 1 in ones place = 1
the tens place is on the left for example the # 15 1 is the tens and 5 is the ones
3 is in the ones place. 2 is in the tens place. 1 is in the hundreds place.
Is that you look at the 1 and it is on the hundreds place and you look at the 6 and its on the tens place and the 5 is in the ones placed a to 0.98 is that the 9 is in the tens place and the 8 is in the ones place
the second one .... first # = hundreds second # = tens third # = ones
12 tens mean there are 1 tens and 2 ones, as only one digit can occupy a column.
For example, a seven in the tens place would equal to 70 whereas a 7 in the ones place equals 7.
In the number 381, there are 8 tens. This is because the digit 8 is in the tens place, representing 80. The hundreds place is 3, representing 300, and the ones place is 1, representing 1. Therefore, there are 8 tens in the number 381.
Oh, dude, it's like super easy. So, you start with 78, right? And then you regroup 1 ten as 10 ones. So, you take 1 from the tens place and add it to the ones place, making it 8 tens and 18 ones. See, easy peasy lemon squeezy!
The number is 3501 because it is less than 3502 an it has a 1 in the ones place and a zero in the the tens place so its 3501.
49.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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }