Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
51
Task/Happy-numbers/Action-/happy-numbers.action
Normal file
51
Task/Happy-numbers/Action-/happy-numbers.action
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
BYTE FUNC SumOfSquares(BYTE x)
|
||||
BYTE sum,d
|
||||
|
||||
sum=0
|
||||
WHILE x#0
|
||||
DO
|
||||
d=x MOD 10
|
||||
d==*d
|
||||
sum==+d
|
||||
x==/10
|
||||
OD
|
||||
RETURN (sum)
|
||||
|
||||
BYTE FUNC Contains(BYTE ARRAY a BYTE count,x)
|
||||
BYTE i
|
||||
|
||||
FOR i=0 TO count-1
|
||||
DO
|
||||
IF a(i)=x THEN RETURN (1) FI
|
||||
OD
|
||||
RETURN (0)
|
||||
|
||||
BYTE FUNC IsHappyNumber(BYTE x)
|
||||
BYTE ARRAY cache(100)
|
||||
BYTE count
|
||||
|
||||
count=0
|
||||
WHILE x#1
|
||||
DO
|
||||
cache(count)=x
|
||||
count==+1
|
||||
x=SumOfSquares(x)
|
||||
IF Contains(cache,count,x) THEN
|
||||
RETURN (0)
|
||||
FI
|
||||
OD
|
||||
RETURN (1)
|
||||
|
||||
PROC Main()
|
||||
BYTE x,count
|
||||
|
||||
x=1 count=0
|
||||
WHILE count<8
|
||||
DO
|
||||
IF IsHappyNumber(x) THEN
|
||||
count==+1
|
||||
PrintF("%I: %I%E",count,x)
|
||||
FI
|
||||
x==+1
|
||||
OD
|
||||
RETURN
|
||||
Loading…
Add table
Add a link
Reference in a new issue