mirror of
https://github.com/Ladebeze66/Piscine42.git
synced 2025-12-16 05:58:07 +01:00
33 lines
1.1 KiB
C
Executable File
33 lines
1.1 KiB
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_iterative_factorial.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/12/12 09:44:26 by fgras-ca #+# #+# */
|
|
/* Updated: 2022/12/12 11:00:06 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_iterative_factorial(int nb)
|
|
{
|
|
int resultat;
|
|
|
|
resultat = 1;
|
|
if (nb == 0)
|
|
{
|
|
return (1);
|
|
}
|
|
while (nb > 0)
|
|
{
|
|
resultat *= nb;
|
|
nb--;
|
|
}
|
|
if (nb < 0)
|
|
{
|
|
return (0);
|
|
}
|
|
return (resultat);
|
|
}
|