SHARE
TWEET

6




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- program Project1;
- function AAA(n: integer):int32;
- begin
- if (n = 1) then
- AAA:= 1
- else AAA:= AAA(n-1) * n;
- end;
- begin
- write(AAA(2) + AAA(5));
- readln();
- end.
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.