Dada a função em Delphi, function xxx(x:integer):integer; begin if x>0 then xxx :...
Responda: Dada a função em Delphi, function xxx(x:integer):integer; begin if x>0 then xxx := xxx(x-1)*x else xxx := 1; end; A alternativa com os resultados da aplicação da função para o valor de entrad...