미궁게임을 하다보면 아래와 같은 문제에 직면하게 된다.
미궁게임예제
그럼 급하게 코딩이 필요한데 이럴때 파이썬 인터프리터로 금방 해결할 수 있게된다.
/home1/9x/cs199036/python% python
Python 2.3.4 (#1, Nov 10 2004, 13:08:40) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> a=0
>>> while a*a < 10000:
... if a*a > 1000:
... s = str(a*a)
... if s[0]==s[1] and s[2]==s[3]:
... print a, a*a
... a = a+1
...
88 7744
>>>
결과와 같이 답은 7744 이다.
미궁게임예제
그럼 급하게 코딩이 필요한데 이럴때 파이썬 인터프리터로 금방 해결할 수 있게된다.
/home1/9x/cs199036/python% python
Python 2.3.4 (#1, Nov 10 2004, 13:08:40) [C] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> a=0
>>> while a*a < 10000:
... if a*a > 1000:
... s = str(a*a)
... if s[0]==s[1] and s[2]==s[3]:
... print a, a*a
... a = a+1
...
88 7744
>>>
결과와 같이 답은 7744 이다.
최근 댓글