Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
my_factorielle_rec.c
SUBMITTED BY:
Guest
DATE:
Nov. 29, 2013, 6:39 p.m.
FORMAT:
Text only
SIZE:
273 Bytes
Raw
Download
Tweet
HITS:
1462
Go to comments
Report
int my_factorielle_rec(int nb)
{
if (nb > 12 || nb < 0)
return (0);
if (nb == 0)
return (1);
if (nb == 0)
{
nb = 1;
return (nb);
}
if (nb > 0)
return (nb * my_factorielle_rec(nb - 1));
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus