home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 2
/
DATAFILE_PDCD2.iso
/
fractals
/
_fractrace
/
FTS-Files
/
Factorial
< 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
|
1990-07-21
|
180 b
|
14 lines
\ Factorial
\ Calculates the factorial of n
var n,factorial,this
n=6
factorial=1
if n>1
for this=n to 1 by -1
factorial=factorial*this
endfor
endif
show factorial