Find a 5-digit integer nnn such that n2n^2n2 starts with 27182
Answers
Answered by
3
Answer:
Here is a Python (2.7) solution: print "What is a 5-digit integer N such that N^2 starts with 27182?" for n in range(10000,100000): nsquare = n*n. snsquare = str(nsquare) if (len(snsquare) > 4): s5 = "" for k in range(5): s5 = s5 + snsquare[k]
Answered by
1
<h1> Hi Dude ! </ h1>
_______________ ❤️
Similar questions