Data update

This commit is contained in:
Ingy döt Net 2024-07-13 15:19:22 -07:00
commit 5c1bb7bfa9
2011 changed files with 35091 additions and 3239 deletions

View file

@ -0,0 +1,11 @@
PUT 1 IN square.root
PUT 1 IN cube.root
PUT 30 IN amount
WHILE amount > 0:
WHILE square.root ** 2 > cube.root ** 3:
PUT cube.root + 1 IN cube.root
IF square.root ** 2 <> cube.root ** 3:
WRITE square.root ** 2/
PUT amount - 1 IN amount
PUT square.root + 1 IN square.root