home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-385-Vol-1of3.iso
/
p
/
pccts.zip
/
tutorial
/
fact.sc
< prev
next >
Wrap
Text File
|
1992-12-08
|
149b
|
12 lines
main(n)
{
print fact(n);
print "\n";
}
fact(n)
{
if ( n == "0" ) return "1";
return n * fact(n - "1");
}