Factoriel en c
Fermé
mehdi1129
Messages postés
23
Date d'inscription
mercredi 7 février 2007
Statut
Membre
Dernière intervention
14 mars 2010
-
7 mars 2007 à 18:04
Marinette - 28 févr. 2011 à 09:21
Marinette - 28 févr. 2011 à 09:21
5 réponses
Sethpolma
Messages postés
66
Date d'inscription
mercredi 25 juin 2003
Statut
Membre
Dernière intervention
8 mars 2007
15
8 mars 2007 à 17:29
8 mars 2007 à 17:29
Un algorithme récursif ?
Factorielle(n) = Factorielle(n-1) * n
Factorielle(n-1) = Factorielle(n-2) * (n-1)
...
Factorielle(0) = 1
Il ne te reste plus qu'à implémenter ça très simplement.
Factorielle(n) = Factorielle(n-1) * n
Factorielle(n-1) = Factorielle(n-2) * (n-1)
...
Factorielle(0) = 1
Il ne te reste plus qu'à implémenter ça très simplement.
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
lirey83
Messages postés
75
Date d'inscription
mardi 2 janvier 2007
Statut
Membre
Dernière intervention
18 août 2007
13
8 mars 2007 à 19:35
8 mars 2007 à 19:35
google :
http://www.ann.jussieu.fr/courscpp/Sections/Sect05-G0.html
http://www.ann.jussieu.fr/courscpp/Sections/Sect05-G0.html