September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
22
Task/Digital-root/AppleScript/digital-root.applescript
Normal file
22
Task/Digital-root/AppleScript/digital-root.applescript
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
on digitalroot(N as integer)
|
||||
script math
|
||||
to sum(L)
|
||||
if L = {} then return 0
|
||||
(item 1 of L) + sum(rest of L)
|
||||
end sum
|
||||
end script
|
||||
|
||||
set i to 0
|
||||
set M to N
|
||||
|
||||
repeat until M < 10
|
||||
set digits to the characters of (M as text)
|
||||
set M to math's sum(digits)
|
||||
set i to i + 1
|
||||
end repeat
|
||||
|
||||
{N:N, persistences:i, root:M}
|
||||
end digitalroot
|
||||
|
||||
|
||||
digitalroot(627615)
|
||||
Loading…
Add table
Add a link
Reference in a new issue