langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
18
Task/Multifactorial/XPL0/multifactorial.xpl0
Normal file
18
Task/Multifactorial/XPL0/multifactorial.xpl0
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
code ChOut=8, CrLf=9, IntOut=11;
|
||||
|
||||
func MultiFac(N, D); \Return multifactorial of N in degree D
|
||||
int N, D;
|
||||
int F;
|
||||
[F:= 1;
|
||||
repeat F:= F*N;
|
||||
N:= N-D;
|
||||
until N <= 1;
|
||||
return F;
|
||||
];
|
||||
|
||||
int I, J; \generate table of multifactorials
|
||||
for J:= 1 to 5 do
|
||||
[for I:= 1 to 10 do
|
||||
[IntOut(0, MultiFac(I, J)); ChOut(0, 9\tab\)];
|
||||
CrLf(0);
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue