mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-10-31 23:09:49 +00:00
10 lines
154 B
C
10 lines
154 B
C
int Fibonacci(int n)
|
|
{
|
|
if ( n == 0 )
|
|
return 0;
|
|
else if ( n == 1 )
|
|
return 1;
|
|
else
|
|
return ( Fibonacci(n-1) + Fibonacci(n-2) );
|
|
}
|