answersLogoWhite

0


Best Answer

What number has 9 tens and 4 fewer ones than tens

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What number has 9 tens and 4 fewr ones than tens?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What number has 9 tens and 4 fewer ones than tens?

9 tens = 90. 4 fewer ones than tens = 9 - 4 = 5. Therefore the answer is 95.


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

The number you are looking for is 74.


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

well 7 tens is 70 and 8 tens is 80 and the number containts 4 ones so it would be 74.


What number is greater than 4 tens and less than 5 tens you have 9 ones what number aRE you?

0.4111567111203111789


What number has 5 tens and 4 fewer ones than tens?

51


The sum of my ones and tens digit is 10. My tens digit is greater than my ones digit. i am a prime number what number am i?

16


Your number has 7 tens its ones digit is 1 more than its tens digit what is your number?

So far, you know that your number has a seven in the tens column:7?The ones digit is one more than the tens digit, which is 7.7+1=8Your number is 78.


You are greater than 4 tens and less than 5 tens you have 9 ones What number are you?

49


You have more ones than tens the value of your tens digit is 80 What number are you?

88


What number has 7 hundreds no tens and 9 more ones than tens?

709


What number has 9 hundreds 3 fewer tens than hundreds and 3 more ones than tens?

what number has 9 hundreds, 2 fewer tens than hundreds, and 2 fewer ones than hundreds


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