mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 16:52:10 +00:00
16 lines
163 B
Plaintext
16 lines
163 B
Plaintext
/* The factorial */
|
|
|
|
int factorial(n)
|
|
{
|
|
if (n <= 0)
|
|
return 1;
|
|
else
|
|
return n * factorial(n-1);
|
|
}
|
|
|
|
int main(n)
|
|
{
|
|
return factorial(n);
|
|
}
|
|
|