Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
13
Task/Babbage-problem/Common-Lisp/babbage-problem-2.lisp
Normal file
13
Task/Babbage-problem/Common-Lisp/babbage-problem-2.lisp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
; Project : Babbage problem
|
||||
|
||||
(setq n 1)
|
||||
(setq bab2 1)
|
||||
(loop while (/= bab2 269696)
|
||||
do (setq n (+ n 1))
|
||||
(setf bab1 (expt n 2))
|
||||
(setf bab2 (mod bab1 1000000)))
|
||||
(format t "~a" "The smallest number whose square ends in 269696 is: ")
|
||||
(write n)
|
||||
(terpri)
|
||||
(format t "~a" "Its square is: ")
|
||||
(write (* n n))
|
||||
Loading…
Add table
Add a link
Reference in a new issue