Deuxième partie : Cours de I Applications Delphi
Documents pareils
Programmation Delphi : Algorithmes obligatoires
function factorielle ( n : integer ) : integer ;
begin
i f n<2 then
factorielle :=1
else
factorielle :=n∗ factorielle ( n −1)
end ;