Skip to content

Instantly share code, notes, and snippets.

@TheAnimatrix
Created September 20, 2019 12:29
Show Gist options
  • Save TheAnimatrix/b5ba473d46b5f197a76347de4ab7b93b to your computer and use it in GitHub Desktop.
Save TheAnimatrix/b5ba473d46b5f197a76347de4ab7b93b to your computer and use it in GitHub Desktop.
void main()
{
int n = 0;
while(n!=10)
{
print(fibonacci(n));
n++;
}
}
int fibonacci(int n)
{
if (n == 0) {return 0;}
if (n == 1) {return 1;}
return fibonacci(n-1)+fibonacci(n-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment