Use some brain

Algebra Level 3

A four digit number Get reversed when multiplied by 4. Find the number.


The answer is 2178.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Here is my solution, :D

for A the possibility for it being 1 is ruled out because we can't get 1 on the unit place when multiplying a no. by 4.

Afreen Sheikh - 6 years, 4 months ago
David Holcer
Mar 22, 2015
1
2
3
4
5
for i in range(10**3,10**4+1):
    i=str(i)
    num=int(i[::-1])
    if int(i)*4==num:
        print i

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...