Skip to content

Instantly share code, notes, and snippets.

@joisino
Created June 3, 2017 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joisino/dd4366ca4df4c4f5405e3ad174ee069b to your computer and use it in GitHub Desktop.
Save joisino/dd4366ca4df4c4f5405e3ad174ee069b to your computer and use it in GitHub Desktop.
int fib( int n ){
if( n <= 1 ){
return n;
}
return fib( n - 1 ) + fib( n - 2 );
}
int main(){
return fib( 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment