-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_iterative_factorial.c
25 lines (22 loc) · 1.03 KB
/
ft_iterative_factorial.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_iterative_factorial.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jsprouts <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/25 19:20:53 by jsprouts #+# #+# */
/* Updated: 2019/09/25 19:21:21 by jsprouts ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_iterative_factorial(int nb)
{
int ft;
ft = 1;
if (nb > 12 || nb < 0)
return (0);
while (nb != 0)
ft *= nb--;
return (ft);
}