Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,11 @@
100 REM Babbage problem
110 REM We can start at the square root of 269696
120 LET I = 520
130 REM 269696 is a multiple of 4, 520 too
140 REM so we can increment I by 4
150 DO WHILE MOD((I * I), 1000000) <> 269696
160 LET I = I + 4
170 LOOP
180 PRINT "The smallest positive integer whose square ends in the digits 269696 is"; I
190 PRINT "Its square is"; I * I
200 END