216.
(a)(a-2)(a+2)(2a) It can be: 2044 3156 4268
216
22621, 44742, 66863, 88984
I am a four digit number. My tens digit is 2 more than my ones digit. My hundreds and thousands digit are both 1 less than my ones digit. What number can i be?
452, 894. None other that I can think of
216.
(a)(a-2)(a+2)(2a) It can be: 2044 3156 4268
216
Oh, what a delightful puzzle we have here! Let's paint a happy little picture with numbers. If we follow the clues, the number we're thinking of is 8642. Just like painting, it's all about following the steps and letting the numbers come together in harmony. Happy counting!
22621, 44742, 66863, 88984
1.382 OR 0.000 or 2831
22621, 44742, 66863, 88984
I am a four digit number. My tens digit is 2 more than my ones digit. My hundreds and thousands digit are both 1 less than my ones digit. What number can i be?
This is missing some information. You mentioned the tens digit twice and didn't mention the ten thousands digit. One possibility is 87184.
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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }
804