Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
20
Task/Factorial/Sather/factorial.sa
Normal file
20
Task/Factorial/Sather/factorial.sa
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
class MAIN is
|
||||
|
||||
-- recursive
|
||||
fact(a: INTI):INTI is
|
||||
if a < 1.inti then return 1.inti; end;
|
||||
return a * fact(a - 1.inti);
|
||||
end;
|
||||
|
||||
-- iterative
|
||||
fact_iter(a:INTI):INTI is
|
||||
s ::= 1.inti;
|
||||
loop s := s * a.downto!(1.inti); end;
|
||||
return s;
|
||||
end;
|
||||
|
||||
main is
|
||||
a :INTI := 10.inti;
|
||||
#OUT + fact(a) + " = " + fact_iter(a) + "\n";
|
||||
end;
|
||||
end;
|
||||
Loading…
Add table
Add a link
Reference in a new issue