home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
maths
/
progs
/
maths1
/
Brian
/
bico
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-07-20
|
179 b
|
11 lines
DEFFNbico(N%,R%)
LOCAL M%
IF R%=0 THEN =1
IF R%>N% THEN PRINT "ERROR: R%>N% IN FACTORIAL": STOP
IF 2*R% > N% THEN R% = N%-R%
M%=1
FOR I% = 1 TO R%
M% = M% * (N%-I%+1)/I%
NEXT
=M%