Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
20
Task/Happy-numbers/MiniScript/happy-numbers.mini
Normal file
20
Task/Happy-numbers/MiniScript/happy-numbers.mini
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
isHappy = function(x)
|
||||
while true
|
||||
if x == 89 then return false
|
||||
sum = 0
|
||||
while x > 0
|
||||
sum = sum + (x % 10)^2
|
||||
x = floor(x / 10)
|
||||
end while
|
||||
if sum == 1 then return true
|
||||
x = sum
|
||||
end while
|
||||
end function
|
||||
|
||||
found = []
|
||||
i = 1
|
||||
while found.len < 8
|
||||
if isHappy(i) then found.push i
|
||||
i = i + 1
|
||||
end while
|
||||
print "First 8 happy numbers: " + found
|
||||
Loading…
Add table
Add a link
Reference in a new issue