answersLogoWhite

0


Best Answer

10 + 10 + 10 + 10 + 10 + 10 + 1 +1

= 62

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What number is 6 tens plus 2 ones?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you describe a 2 digit number as tens and ones?

The first (left most) digit is the number of tens and the other is the number of ones. So 57 = 5 tens plus 7 ones = 50 + 7 = 57


How do you write 8 thousand plus 14 tens plus 2 ones?

8 thousand + 14 tens + 2 ones = 8,1428 thousand = 800014 tens = ......1402 ones = ..........2============..................8142


What number represents the same amount as 2 hundred plus 12 tens plus 6 ones?

326


What is 87 tens and 2 ones?

Write 87 tens and 2 ones as a base ten number.


How many tens and how many ones does this number count 82?

8 tens 2 ones


What number has 5 tens 4 ones and 2 hundreds?

254 - has 2 hundreds, 5 tens, and 4 ones


What number is 6 tens and 2 ones?

62


What number has 3 tens 2 ones?

32


It is greater than 7 tens and less than 8 tens The number has 4 ones?

The number you are looking for is 74.


How do you rename 2 hundreds plus 15 tens plus 19 ones so that there are less than 10 ones and less than 10 tens?

200 + 150 + 19 = 369


If you have 4 tens your ones digit is 2 more than your tens digit what number are you?

52


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