home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
basic
/
library
/
qb_pds
/
baswiz
/
bw_bas
/
facts.bas
< prev
next >
Wrap
BASIC Source File
|
1992-08-29
|
710b
|
18 lines
' +----------------------------------------------------------------------+
' | |
' | BASWIZ Copyright (c) 1990-1992 Thomas G. Hanlin III |
' | |
' | The BASIC Wizard's Library |
' | |
' +----------------------------------------------------------------------+
DEFINT A-Z
FUNCTION FactS! (Num AS INTEGER)
Result! = 1!
FOR N = 2 TO Num
Result! = Result! * N
NEXT
FactS! = Result!
END FUNCTION