Add a Fibonacci algorithm

This commit is contained in:
Luiz Carlos Aguiar 2017-07-04 17:18:46 -03:00
parent 06f872bb8b
commit cc5da4ce21

19
fib.c Normal file
View File

@ -0,0 +1,19 @@
#include <stdio.h>
//Fibonnacci function
int fib(int number){
if(number==1||number==2) return 1;
else return fib(number-1)+fib(number-2);
}
int main(){
int number;
//Asks for the number that is in n position in Fibonnacci sequence
printf("Number: ");
scanf("%d", &number);
printf("%d \n", fib(number));
return 0;
}