Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Nifty code
SUBMITTED BY:
Dogma333
DATE:
Sept. 23, 2019, 5:02 p.m.
FORMAT:
PHP
SIZE:
349 Bytes
Raw
Download
Tweet
HITS:
763
Go to comments
Report
Holy crap.
<?php
// Fibonacci Series
// using Recursion
// function returns
// the Fibonacci number
function
fib
(
$n
)
{
if
(
$n
<=
1
)
return
$n
;
return
fib
(
$n
-
1
)
+
fib
(
$n
-
2
);
}
// Driver Code
$n
=
9
;
echo
fib
(
$n
);
// This code is contributed by aj_36
?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus