mirror of
https://github.com/Ladebeze66/Piscine42.git
synced 2025-12-16 05:58:07 +01:00
21 lines
1.0 KiB
C
Executable File
21 lines
1.0 KiB
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_fibonacci.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/12/12 13:26:04 by fgras-ca #+# #+# */
|
|
/* Updated: 2022/12/12 14:22:37 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_fibonacci(int index)
|
|
{
|
|
if (index < 0)
|
|
return (-1);
|
|
if (index == 0 || index == 1)
|
|
return (index);
|
|
return (ft_fibonacci(index - 1) + ft_fibonacci(index - 2));
|
|
}
|