Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/ITG/FAKULT.PAS
2001-11-30 12:14:44 +01:00

27 lines
515 B
Plaintext

program Fuck_ultaet;
var which: integer;
function Fak_Ite(m: integer): longint;
var i: integer;
tmp: longint;
begin
tmp := 1;
for i:=1 to m do begin
tmp := tmp * i;
end;
Fak_Ite := tmp;
end;
function Fak_Rek(m: integer): longint;
begin
if m=1 then Fak_Rek := 1 else Fak_Rek := m * Fak_Rek(m-1);
end;
begin
WriteLn('======================');
Write('Enter n: '); ReadLn(which);
WriteLn('Iterative: ',Fak_Ite(which));
WriteLn('Recursive: ',Fak_Rek(which));
end.